div {
    display: flex;

}

.container {
    width: 99%;
    height: 98vh;
    justify-content: center;
    align-items: center;
}

/* Стиль кнопки "Записатися на обстеження" */
a.button {
    font-family: "Manrope", Sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 20px;
    fill: #FFFFFF;
    color: #FFFFFF;
    background-color: #CBB57D;
    border-radius: 100px 100px 100px 100px;
    padding: 19px 50px 18px 50px;
    text-decoration: none;
    outline: none;
    text-align: center;

}

/* ################# */

/* Модальне вікно з вибором міста */

#city_modal {
    background: rgba(102, 102, 102, 0.5);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: none;

}

#okno {
    width: 700px;
    height: 200px;
    text-align: center;
    padding: 15px;
    border: 3px solid #CBB57D;
    border-radius: 10px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background: #fff;
    flex-direction: column;
    align-items: center;
}

#city_modal:target {
    display: block;
}

.city_btn_container {

    width: 100%;
    margin-top: 20px;
    justify-content: space-between;

}

/* ################# */


/* Вибір обстежень */
.container_price {

    height: 80%;
    width: 700px;

    flex-direction: column;

}

.header_city {
    justify-content: center;
    align-items: center;
}

.form_examination_container {
    flex-direction: column;
    align-items: center;
    height: 80%;
}

.custom_btn {
    width: 200px;
    height: 50px;
    font-family: "Manrope", Sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 20px;
    fill: #FFFFFF;
    color: #FFFFFF;
    background-color: #CBB57D;
    border-radius: 100px 100px 100px 100px;
    padding: 19px 50px 18px 50px;
    text-decoration: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mrt_ct_container {

    width: 100%;
    height: 150px;
    justify-content: space-around;
    align-items: center;
}


.examination_container {
    width: 80%;
}

.js-select2 {

    width: 100%;

}

.secected_examination_container {
    margin-top: 20px;
    width: 85%;
    height: 50%;
    flex-direction: column;

}

.amount_examination,
.name_examination {
    margin-top: 5px;
}

.secected_examination {
    width: 100%;
    flex-grow: 3;
    overflow-y: scroll;
    flex-direction: column;
}

.name_examination {
    width: 90%;

}

.amount_examination {
    width: 10%;

    justify-content: center;
    align-items: center;
}

.selected_header {
    width: 100%;
    justify-content: center;
}

.pay_btn_container {
    width: 100%;
    justify-content: center;
}

.pay_btn:not([disabled]):hover {
    background-color: #ffbc13;
}

.examination {
    height: 50px;
    justify-content: center;
    align-items: center;
}

.examination:hover {
    background-color: rgba(237, 117, 117, 0.2);
}


/* Модалка для внесення даних паціента */

#client_modal {
    background: rgba(102, 102, 102, 0.5);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
}


#client_data {
    width: 50vw;
    height: 90vh;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background: #fff;
    display: flex;
    flex-direction: column;
    z-index: 100;

}

#client_modal:target {
    display: block;
}

.header_client_form{
    justify-content: center;
    align-items: center;
}

.sale_list {
    height: 235px;
    overflow-y: scroll
}

.close:hover {
    background: #e6e6ff;
}

.col-25 {
    flex: 25%;
    flex-direction: column;
    
}

.col-50 {

    flex: 50%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.col-75 {
    flex: 75%;
    flex-direction: column;
}

.container_payment {
flex-direction: column;
    padding: 5px 40px 15px 20px;
    border: 1px solid lightgrey;
    border-radius: 3px;

}

input[type=text] {
    width: 90%;
    margin-bottom: 20px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

label {
    margin-bottom: 10px;
    display: block;
}

.icon-container {
    margin-bottom: 20px;
    padding: 7px 0;
    font-size: 24px;
}

span.price {
    float: right;
    color: grey;
}

.btn_modal_conainer{
    justify-content: space-between;
}
/* ################# */