.coins_list {
    font-family: 'El Messiri';
    display: flex;
    flex-direction: column;
}
.coins_list.cons-oper-body {
    margin-top: 0;
}
.coin_item {
    padding: 30px;
    background: #fff;
    border-radius: 25px;
    margin: 30px 0;
    display: flex;
}
.coin_item_info {
    width: 65%;
}
.coin_item_image {
    width: 35%;
    padding-right: 10%;
}
.coin_item_title {
    color: #00b7c1;
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.coin_item_title.mobile {
    display: none;
}
.coin_item_prop {
    font-weight: normal;
    font-size: 22px;
    line-height: 1em;
    margin-bottom: 4px;
}
.coin_item_price_list {
    margin-top: 30px;
    display: flex;
}
.coin_item_price_item {
    margin-right: 30px;
}
.coin_item_price_list .price {
    font-size: 24px;
    margin-right: auto;
    color: #00b7c1;
    line-height: 18px;
}
.coin_item_course_date {
    color: #6b8086;
    margin-top: -5px;
}
.openOrderCoinForm {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    font-family: 'Montserrat', Arial, sans-serif;
    color: #2c2e31;
    border-radius: 20px;
    padding: 7px 16px 8px 16px;
    display: block;
    width: max-content;
    margin-top: 40px;
    overflow: hidden;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    cursor: pointer;
}
.openOrderCoinForm::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(#00cfd7, #00b8c2);
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    border-radius: 20px;
}
.openOrderCoinForm::after {
    content: '';
    display: block;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(#f9d36b, #d0b04c);
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}
.openOrderCoinForm:hover::before {
    opacity: 0;
}
.openOrderCoinForm:hover::after {
    opacity: 1;
}
.openOrderCoinForm span {
    position: relative;
    z-index: 5;
    color: #fff;
    transition: 0.3s color;
}
.openOrderCoinForm:hover span {
    color: #002020;
}
.coin_item_mess {
    font-family: 'Montserrat', Arial, sans-serif;
}
.coin_item_desc {
    position: relative;
    cursor: pointer;
    margin-top: 20px;
    width: max-content;
}
.coin_item_desc_btn {
    color: #d0b04c;
    width: max-content;
    position: relative;
    padding-bottom: 5px;
    font-size: 16px;
}
.coin_item_desc_btn::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 100%;
    background: #00b7c1;
    left: 0;
    bottom: 0;
}
.coin_item_desc_text {
    position: absolute;
    display: none;
    padding: 20px;
    background: #fff;
    border-radius: 20px;
    z-index: 6;
    left: -20px;
    top: 28px;
    width: calc(100vw - 40px);
    max-width: 1150px;
}
.coin_item_desc .coin_item_desc_text {
    box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.1);
}
.coin_item_image_main .reverce {
    display: none;
}
.coin_item_image_nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.coin_item_image_toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}
.coin_item_image_toggle img {
    max-width: 80px;
    margin: 0 15px;
}
.coin_item_image_toggle span {
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
}
.coin_item_image_toggle.disabled {
    opacity: .4;
}
#orderCoin {
    background: #00b7c1 url("/local/templates/mbb_template2/assets/images/footer-pattern.png");
    border-radius: 25px;
    padding: 40px;
}
.orderCoinForm {
    background: #fff;
    border-radius: 25px;
    padding: 40px;
    max-width: 980px;
    width: 100vw;
}
.orderCoinForm .label-capt {
    padding: 0;
    margin: 0;
    justify-content: space-between;
}
.orderCoinForm .open-acc-form label span {
    max-width: max-content;
}
.coin_form_title {
    font-size: 24px;
    font-family: 'El Messiri';
    margin-bottom: 5px;
}
.coin_form_subtitle {
    font-family: 'El Messiri';
    margin-bottom: 5px;
    font-size: 16px;
}
.office_select {
    cursor: pointer;
    height: 45px;
    margin-bottom: 10px;
}
.office_select_value {
    background: #fff;
    display: flex;
    border: 1px solid #d2d2d3;
    border-radius: 25px;
    padding: 10px 15px;    
    position: absolute;
    width: calc(100% - 30px);
}
.office_select_arrow {
    width: 23px;
    min-width: 23px;
    height: 23px;
    overflow: hidden;
    border-radius: 50%;
    border: 2px solid #00b7c1;
    padding: 3px;
    margin-left: auto;
}
.office_select_arrow svg {
    transform: rotateX(180deg);
    fill: #00b7c1;
}
.office_select_wrap_item {
    max-height: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.office_select_wrap_item.active {
    max-height: 120px;
}
.office_select_item {
    line-height: 24px;
    margin-bottom: 5px;
}
.orderCoinForm input[name="count"] {
    border: 1px solid #d2d2d3;
    border-radius: 25px;
    padding: 10px 15px;
    width: 100%;
    margin-bottom: 40px;
}
.coin_form_desc {
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 10px;
}
.coin_form_btn {
    width: 100%;
    text-align: center;
}
.orderCoinForm input[type="submit"] {
    font-size: 14px;
    font-weight: bold;
    color: #2c2e31;
    border-radius: 20px;
    padding: 7px 16px 8px 16px;
    margin: 0 0px 0 25px;
    overflow: hidden;
    background-image: linear-gradient(#f9d36b, #d0b04c);
}
.coin_form_mess {
    margin-bottom: 10px;
}
.coin_form_mess.error {
    color: #d0b04c;
}
.coin_form_mess.success {
    color: #00b7c1;
}
.orderCoinForm>.row>.col-md-6:first-child {
    border-right: 1px solid #d2d2d3;
}
.orderCoinForm form {
    padding-right: 30px;
    position: relative;
}
.coin_form_code_wrap {
    padding-left: 30px;
    padding-top: 30px;
}
.coin_form_code {
    width: 100%;
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    margin-top: 80px;
}
#orderCoin .fancybox-close-small {
    color: #00b7c1;
    right: 60px;
    top: 60px;
    border: 1px solid #00b7c1;
    border-radius: 50%;
    padding: 5px;
    display: flex;
    align-items: center;
    height: 35px;
    width: 35px;
}
#orderCoin .fancybox-close-small svg {
    width: 25px;
    height: 25px;
}
@media (max-width: 769px) {
    .coin_item {
        flex-wrap: wrap;
    }
    .coin_form_title {
        margin-top: 10px;
    }
    .coin_item_info {
        width: 100%;
    }
    .coin_item_image {
        width: 100%;
        order: -1;
        margin-bottom: 20px;
    }
    .coin_item_title.desktop {
        display: none;
    }
    .coin_item_title.mobile {
        display: block;
        line-height: 1.2;
    }
    #orderCoin {
        padding: 28px;
    }
    .orderCoinForm {
        width: auto;
        padding: 10px;
    }
    .orderCoinForm form {
        padding: 0;
    }
    .coin_form_code_wrap {
        padding-left: 0;
        padding-top: 10px;
    }
    #orderCoin .fancybox-close-small {
        right: 36px;
        top: 36px;
    }
    .office_select_value {
        width: 100%;
    }
    .coin_form_code {
        margin: 10px 0;
    }
    .coin_form_desc {
        font-weight: normal;
        font-size: 10px;
    }
    .orderCoinForm input[name="count"] {
        margin-bottom: 10px;
    }
    .coin_item_price_list {
        flex-wrap: wrap;
    }
    .coin_item_course_date {
        width: 100%;
        margin-top: 10px;
    }
}