/* Format grand écran */
@media screen and (min-width: 600px) {
    /* TEXTES */
    .main-calc {
        font-size: 20px;
    }

    .main-calc h2 {
        font-size: 25px;
        color: #bdc3c7;
        font-weight: 700;
        font-family: 'PT Serif';
    }

    .main-calc h3 {
        font-size: 30px !important;
        font-family: 'PT Serif';
    }

    /* RADIO */
    .input_radio_div, .input_numberd_div, .input_checkbox_div, .input_range_div {
        padding-bottom: 30px;
    }

    /* NUMBER */
    .input-text-number {
        width: 50%;
    }

    /* RANGE */
    .label_input_range_class {
        text-align: center;
        transform: translateY(100%);
    }

    /**
        Default Markup
    **/

    .container-fluid {
        padding-bottom: 5%;
    }

    .card-input {
        border-radius: 7px;
        width: 170px;
        color: #0a3d62;
        font-weight: 500;
    }
    
}

/* TEXTES */
.main-calc {
    font-size: 18px;
    font-family: 'PT Serif';
}

.main-calc #resultat-invisible .res {
    font-weight: bold;
}

.main-calc h2 {
    font-size: 20px;
    color: #bdc3c7;
    font-weight: 700;
    font-family: 'PT Serif';
}

.main-calc h3 {
    font-size: 23px !important;
    font-family: 'PT Serif';
    font-weight: bold;
}

/* RADIO */
.input_radio_div, .input_numberd_div, .input_checkbox_div, .input_range_div {
    padding-bottom: 50px;
}

/* NUMBER */
.input-text-number {
    position: relative;
}

.input-text-number span {
    position: absolute;
    right: 40px;
    top: 50%;
    font-weight: bold;
    transform: translateY(-50%);
}

/* BOUTON */
.total-calc-button {
    background-color: #D9D8C3 !important;
    border-radius: 7px !important;
    padding: 15px;
    border: 1px solid;
}

#resultat-invisible {
    display: none;
}

/* SEPARATEUR */
.main-calc .rounded {
    border-top: 8px solid #bbb;   
    margin-top: 40px;
}

/**
  Component
**/

.card-input-element {
    display: none !important;
}

.card-input:hover {
    cursor: pointer;
}

.card-input-element:checked + .card-input {
    box-shadow: 0 0 1px 1px #D9D8C3;
    background-color: #FAFAFA;
    border: 0.10em solid #D9D8C3;
}

.card-input {
    border-radius: 7px !important;
    background-color: #F7F8FA;
}

label {
    display: block !important;
}

.label_input_range_class {
    text-align: center;
}




input[type=range] {
	-webkit-appearance: none;
	margin: 20px 0;
	width: 100%;
}
input[type=range]:focus {
	outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
	width: 100%;
	height: 4px;
	cursor: pointer;
	animate: 0.2s;
	background: #D9D8C3;
	border-radius: 25px;
}
input[type=range]::-webkit-slider-thumb {
	height: 20px;
	width: 20px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 0 4px 0 rgba(0,0,0, 1);
	cursor: pointer;
	-webkit-appearance: none;
	margin-top: -8px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
	background: #D9D8C3;
}
.range-wrap{
	width: 500px;
	position: relative;
}
.range-value{
	position: absolute;
	top: -50%;
}
.range-value span{
	width: 30px;
	height: 24px;
	line-height: 24px;
	text-align: center;
	background: #D9D8C3;
	color: #fff;
	font-size: 12px;
	display: block;
	position: absolute;
	left: 50%;
	transform: translate(-50%, 0);
	border-radius: 6px;
}
.range-value span:before{
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	border-top: 10px solid #D9D8C3;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	margin-top: -1px;
}