::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: black !important;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: black !important;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: black !important;
}
.contentMam{
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-top: 5px;
}
.number-counter {
    padding: 10px;
}
select{
    width: 100%;
}
.conGrid{
    position: relative;
}
.gridFld{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}
.gridFld input,select,textarea{
    border: 2px solid #04469F;
}
.flexCon{
    display: flex;
    justify-content: start;
    gap: 10px;
    margin-top: 10px;
}
.checkboxCon{
    display: flex;
    gap: 8px;
}
input[name=time]{
    width: 20px;
    height: 20px;
    accent-color: #3498db;
}
input[name=staff]{
    width: 20px;
    height: 20px;
    accent-color: #3498db;
}
input[name=day]{
    width: 20px;
    height: 20px;
    accent-color: #3498db;
}
.checkboxCon label{
    font-size: 18px;
    font-weight: 500;
}
.number-counter button {
    border-width: 1px 1px 1px 1px;
    border-color: #D6D6D6;
    background-color: white;
    color: black;
    font-size: 20px;
    padding: 2px 12px;
    cursor: pointer;
    margin: 0 5px;
    border-radius: 30px;
    transition: background-color 0.2s;
}
.niceNumber{
    width: 39px;
    text-align: center;
    border: none;
}

.number-counter button:hover {
    background-color: #25AAE1;
    color: white;
}

.number-counter .number {
    font-size: 24px;
    font-weight: bold;
}
.grid-field{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.grid-field-cal2{
    display: grid;
    grid-template-columns: 1fr;
  margin-top: 30px;
}
.titleField{
    color: #13213B;
    font-size: 20px;
    font-weight: 600;
}
.progressCon{
    position: relative;
    display: flex;
    justify-content: space-around;
    /*margin-bottom: 20px;*/
    z-index: 2;
}
.progressBar{
    border: 1px solid #25AAE1;
    text-align: center;
    font-size: 19px;
    font-weight: 500;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 100%;
    color: black;
    background: white;
}
.progressBar:before{
    content: '';
    width: 35%;
    height: 4px;
    background: #25AAE1;
    position: absolute;
    top: 18px;
    z-index: -1;
}
.progressBar:nth-child(3):before{
    width: 0;
}
.active{
    background: #25AAE1;
    transition: 0.4s;
    color: white;
}
.card_calculator{
    max-width: 1140px;
    width: 100%;
    box-shadow: 0px 0px 5px -2px #25AAE1;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 20px 100px 70px 100px;
    border-radius: 30px;
    background: white;
}
.startCal{
    display: flex;
    justify-content: center;
    gap: 30px;
}
.choices{
    position: relative;
    max-width: 250px;
    width: 100%;
    cursor: pointer;
}
.choices img{
    border-radius: 5px;
}
.choices p{
    color: #FFFFFF;
    position: absolute;
    z-index: 9;
    font-weight: 600;
    bottom: 0;
    text-align: center;
    margin: auto auto;
    width: 100%;
    background: rgba(0,74,173,0.62);
    height: -webkit-fill-available;
    padding-top: 26.5% !important;
    font-size: 20px;
    border-radius: 5px;
    transition: all .1s ease-in-out;
}
.choices p:hover{
    transition: 0.3s;
    background-color: rgba(56,182,255,0.66);
}
.textCal{
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
    color: black;
    font-weight: 600;
}


.range + label {
    display: flex;
    justify-content: center;
    z-index: 10;
    position: relative;
    color: #1C326A;
    text-align: center;
    font-weight: 500;
    background-color: #ffffff;
    cursor: pointer;
    transition: all 200ms ease;
    font-size: 22px;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #bebec8;
}
.range + label:hover{
    background: #25AAE1;
    color: white;
}
.range:checked + label {
    color: white;
    background-color: #25AAE1;
}
.range {
    direction: ltr;
    display: block;
    -webkit-appearance: none;
    background: #DDDDDD;
    border-radius: 12px;
    width: 100%;
    height: 22px;
    margin: 0 auto;
    outline: 0;
    border: 1px solid gray;
}
.range::-webkit-slider-thumb {
    -webkit-appearance: none;
    background-color: #25AAE1;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid white;
    cursor: pointer;
    transition: .3s ease-in-out;
}
.range::-webkit-slider-thumb:hover {
    background-color: white;
    border: 2px solid #3366FF;
}
.range::-webkit-slider-thumb:active {
    transform: scale(1.1);
}
.range-value{
    position: absolute;
    top: 22px;
}

.range-value  span{
    /* padding: 1px; */
    width: auto;
    height: 30px;
    line-height: 11px;
    text-align: right;
    background: #25AAE1;
    color: white;
    font-size: 16px;
    text-align: center;
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    border-radius: 8px;
    padding: 10px;
}
.slider{
    margin-top: 35px;
}
.range-value span:before{
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-top: 10px solid #25AAE1;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    margin-top: -1px;
}
.sliderCon{
    position: relative;
    padding: 40px 0;
}
.conBTnContainer{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}
.next{
    background: #004AAD;
    color: white;
    border: none;
    padding: 12px 30px;
    max-width: 250px;
    width: 100%;
}
.next:hover{
    background: #262A35;
    transition: 0.3s;
}
.prev{
    background: #25AAE1;
    color: white;
    border: none;
    padding: 12px 30px;
    max-width: 250px;
    width: 100%;
}
.prev:hover{
    background: #262A35;
    transition: 0.3s;
}
.titleStep3{
    margin-bottom: 10px;
    text-align: center;
    color: #13213B;
}
.gridResult {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    font-size: 16px;
    margin-top: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 10px;
    border: 1px solid #ccc;
    text-align: center;
    font-size: 16px;
}
thead tr{
    background: #002b7d;
    color: white;
}
.cal2{
    max-width: 750px;
    width: 100%;
    display: block;
    margin-right: auto;
    margin-left: auto;
}
.msgForm{
    text-align: center;
    font-size: 20px;
    margin-top: 10px;
    color: #004AAD;
}
@media(max-width: 600px){
    .textCal{
        font-size: 1rem;
    }
  .choices p{
    height:78px; 
  }
    .card_calculator{
        padding: 20px;
    }
    .grid-field{
        grid-template-columns: 1fr;
    }
    .gridFld{
        grid-template-columns: 1fr;
    }
    .titleStep3{
       font-size: 20px;
    }
}
.result{
    text-align: center;
    margin-top: 20px;
    border: 1px solid #25AAE1;
    padding: 10px;
    font-size: 20px;
}
.msgForm{
    text-align: center;
    margin-top: 10px;
    font-size: 19px;
}
.codCopon{
    max-width: 300px;
    width: 100%;
    display: flex;
    margin-right: auto;
    margin-left: auto;
    margin-top: 30px;
}
.codCopon button{
    background: #25AAE1;
    color: white;
    border: none;
}
.codCopon button:hover{
    background: #25AAE1;
    color: white;
    border: none;
}
.dis{
    color: red;
    text-align: center;
}