@charset "UTF-8";

:root{
    --border:#d8d8d8;
    --divider:#eef2f6;
    --text:#1f2a37;
    --muted:#667085;
    --bg:#ffffff;
    --hover:#f6f8fb;
    --selected:#f1f5ff;
    --shadow:0 8px 24px rgba(16,24,40,.08);
}

.page{
    max-width: 900px;
    margin: 40px auto;
    padding: 0 16px;
}
h1{
    font-size: 22px;
    margin: 0 0 10px;
}
.hint{
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 14px;
}

/* Small note */
.tip{
    margin-top: 10px;
    color: var(--muted);
    font-size: 13px;
}
a, input, select, textarea {
    outline: none;
}

img, input {
    border: none;
    height: auto;
    max-width: 100%;
}

button {
    border: 0;
    cursor: pointer;
    outline: none;
    padding: 0;
}

input[type=submit], button[type=submit] {
    cursor: pointer;
}

/* Chrome, Edge, Safari */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

:root {
    --font-family: Roboto;
    --second-family: Inter;
    --blue: #2995ae;
    --bone: #fff5e0;
    --white: #f2f1ee;
    --white-hover: #e5e4e0;
    --green: #104a55;
    --light-grey: #eceae6;
    --grey-border: #ccc6c6;
    --context-grey: #777;
    --dark-grey: #333;
    --orange: #ff9442;
    --orange-hover: #d0630f;
    /*--second-family: AzeretMono;*/
    --brs: .5rem;
    --bone: #fff5e0;
    --dark-grey-hover: #575454;
    --black: #021518;
    --middle-grey: #d9d9d9;
    --placeholder: #b0b0b0;
    --border:#d8d8d8;
    --divider:#eef2f6;
    --text:#1f2a37;
    --muted:#667085;
    --bg:#ffffff;
    --hover:#f6f8fb;
    --selected:#f1f5ff;
    --shadow:0 8px 24px rgba(16,24,40,.08);
}

.orange-btn {
    background: var(--orange);
    border-radius: .5rem;
    color: var(--dark-grey);
    font-weight: 600;
    font-size: 1rem;
    line-height: 150%;
    text-align: center;
    transition: .4s;
}

.orange-btn:hover:not(:disabled) {
    background: var(--orange-hover);
    color: var(--white);
}

.wrapper-top {
    margin: 0 auto;
    /*max-width: 90rem;*/
    width: 100%;
}

.wrapper-top .container {
    margin-left: auto;
    margin-right: auto;
    max-width: 76.875rem;
    width: 100%;
}

@media (max-width: 1260px) {
    .wrapper-top .container {
        max-width: 62.5rem;
    }
}

@media (max-width: 1030px) {
    .wrapper-top .container {
        max-width: 50rem;
    }
}

@media (max-width: 830px) {
    .wrapper-top .container {
        max-width: 37.5rem;
    }
}

@media (max-width: 630px) {
    .wrapper-top .container {
        padding-right: 1rem;
        padding-left: 1rem;
        max-width: 100%;
    }
}

/*.header {
    background: #fff;
    padding-bottom: .875rem;
    padding-top: .875rem;
}*/

/*.header__container {
    align-items: center;
    display: flex;
    justify-content: space-between;
}*/

/*.logo {
    display: block;
    max-width: 7.43rem;
    width: 100%;
}

.logo img {
    display: block;
}*/

/*.header__right {
    align-items: center;
    display: flex;
    gap: 1.5rem;
}

.support-link {
    background: url(../images/headphones.svg) no-repeat left center;
    font-size: .875rem;
    line-height: 143%;
    padding-left: 2rem;
}

.log-in {
    background: url(../images/icon_user.svg) no-repeat left center;
    font-size: .9375;
    line-height: 133%;
    padding-left: 2rem;
}*/

.wrapper-top .first-section {
    background: image-set(url(/img/first-screen.jpg) 1x, url(/img/first-screen@2x.jpg) 2x) no-repeat center top;
    background-size: cover;
    padding-bottom: 2.5rem;
    padding-top: 2.5rem;
}

.first-section__text {
    color: #fff;
}

@media (max-width: 1030px) {
    .first-section__text {
        text-align: center;
    }
}

.first-section__h1 {
    color: #fff;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: clamp(24px, 2vw, 40px);
    line-height: 145%;
}

.first-section__desc {
    color: var(--bone);
    font-size: 1.06rem;
    line-height: 129%;
    margin-top: 1rem;
    max-width: 29.25rem;
    width: 100%;
}

@media (max-width: 1030px) {
    .first-section__desc {
        max-width: 100%;
    }
}

.fee {
    color: #ffd983;
    font-size: 1.25rem;
    line-height: 125%;
    margin-top: 2rem;
}

.fee span {
    color: #fff;
    font-size: 1.5rem;
    position: relative;
}

@media (max-width: 630px) {
    .fee span {
        display: block;
        font-size: 1.06rem;
        margin-bottom: 1rem;
    }
}

.fee span:after {
    background: url(/img/line-decor.svg) no-repeat center bottom;
    bottom: -0.8125rem;
    content: '';
    height: .8125rem;
    left: -1rem;
    position: absolute;
    width: 8.93rem;
}

@media (max-width: 630px) {
   .fee span:after {
        left: 0;
        right: 0;
        width: 100%;
   } 
}

.convert-box {
    background: var(--white);
    border-radius: .75rem;
    color: var(--context-grey);
    padding: 1.25rem;
}

@media (max-width: 1030px) {
    .convert-box {
        margin-top: 3rem;
    }
}

.tabs {
    background: var(--light-grey);
    border-radius: .5rem;
    display: flex;
    justify-content: center;
    padding: .375rem;
    gap: 2px;
}

.tabs__item {
    border-radius: .5rem;
    font-weight: 600;
    line-height: 150%;
    min-width: 9.25rem;
    text-align: center;
    cursor: pointer;
}

@media (max-width: 630px) {
    .tabs__item {
        font-size: .93rem;
    }
}

.tabs__item.is-active .tabs__link {
    background: var(--green);
    color: var(--bone);
}

.tabs__link {
    background: transparent;
    border-radius: .5rem;
    color: var(--green);
    display: block;
    padding: .5rem;
    transition: .4s;
    width: 100%;
    border:0;
    margin: 0;
}

/*.custom-select {
    position: relative;
}

.custom-select__val {
    background: #f5f5f4 url(../images/chevron-bottom.svg) no-repeat right 1.375rem center;
    cursor: pointer;
    padding-right: 3rem !important;
    text-overflow: ellipsis;
    white-space: nowrap;
}*/

/*.custom-select__item {
    background: #f5f5f4;
    cursor: pointer;
    transition: .4s;
}

.custom-select__item:hover, .custom-select__item.is-active {
    background: var(--white-hover);
}

.custom-select__val, .custom-select__item {
    align-items: center;
    border: 1px solid var(--grey-border);
    border-radius: .5rem;
    display: flex;
    grid-gap: .75rem;
    line-height: 150%;
    overflow: hidden;
    padding: .875rem 1rem;
}*/

/*@media (max-width: 630px) {
    .custom-select__val, .custom-select__item {
        padding: .625rem;
    }
}

.custom-select__name {
    color: #144753;
    font-weight: 600;
}

@media (max-width: 630px) {
    .custom-select__name {
        font-size: .93rem;
    }
}

.custom-select__grey {
    color: var(--context-grey);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

@media (max-width: 630px) {
    .custom-select__grey {
        font-size: .68rem;
    }
}

.select2-dropdown {
    left: 0;
    position: absolute;
    right: 0;
    z-index: 3;
}*/

.convert-box__text {
    color: var(--context-grey);
    font-size: .875rem;
    line-height: 143%;
    margin-top: 1rem;
}

.first-section__container {
    align-items: center;
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 1030px) {
    .first-section__container {
        display: block;
    }
}

/*.custom-select__choose {
    background: var(--white);
    border: 1px solid var(--grey-border);
    display: none;
    left: 0;
    max-height: 12.5rem;
    overflow-y: auto;
    padding: .5rem;
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 2;
}

.custom-select__choose .custom-select__item + .custom-select__item {
    margin-top: .625rem;
}*/

.two-inputs {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 1rem;
}

.two-inputs__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.two-inputs__label {
    align-items: center;
    display: flex;
    font-size: .875rem;
    gap: .25rem;
    margin-bottom: 0;
}

.two-inputs__wrap {
    border: 1px solid var(--grey-border);
    border-radius: .5rem;
    margin-top: .25rem;
    position: relative;
}

.two-inputs__input {
    background: transparent;
    color: var(--dark-grey);
    display: block;
    height: 3.25rem;
    padding: 1rem;
    padding-right: 3rem;
    text-align: left;
    width: 100%;
    font-size: 13.2px;
}

@media (max-width: 630px) {
    .two-inputs__input {
        height: 2.5rem;
    }
}

.two-inputs__currency {
    color: var(--green);
    font-size: .875rem;
    font-weight: 600;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    text-transform: uppercase;
}

.notice {
    background: #dee3db;
    border-radius: .75rem;
    color: var(--dark-grey);
    font-size: .875rem;
    line-height: 143%;
    margin-top: 1rem;
    padding: .75rem 1rem;
}

@media (max-width: 630px) {
    .notice {
        font-size: .8125rem;
    }
}

.convert-box__wrap {
    display: flex;
    justify-content: center;
}

.convert-box__orange-btn {
    display: table!important;
    height: 3.25rem;
    margin: 1rem auto 0;
    width: 15rem;
}

.rate-item {
    padding-bottom: 0;
    padding-left: 0;
    padding-top: 0;
}

/*.select2-selection {
    background: #f5f5f4;
    border: 1px solid var(--grey-border);
    overflow: hidden;
}

.select2-mock {
    width: 100%;
}

.selected-wrap {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.option .rate-item {
    padding-left: 10px;
}*/

.info-icon {
    fill: var(--context-grey);
    height: 1.06rem;
    width: 1.06rem;
}

.help {
    border-radius: 50%;
    cursor: pointer;
    height: 1.0625rem;
    width: 1.0625rem;
}

.help img {
    display: block;
}

@media (hover:hover) {

    .help:hover:after {
        background: var(--bone);
        border-radius: var(--brs);
        color: var(--dark-grey);
        content: attr(data-title);
        line-height: 150%;
        max-width: 20rem;
        padding: .5rem 1rem;
        position: absolute;
        width: 100%;
        z-index: 1;
    }
}

@media (max-width: 1260px) {

    @media (hover:hover) {

        .help:hover:after {
            max-width: 15rem;
        }
    }
}

@media (max-width: 1030px) {

    @media (hover:hover) {

        .help:hover:after {
            right: 6rem;
        }
    }
}

@media (max-width: 480px) {
    .rate-item__meta {
        font-size: .875rem;
    }
}

.inter-font {
    font-family: var(--second-family);
}

/*.breadcrumbs {
    display: flex;
    gap: .4rem;
    margin-top: 0.625rem;
}

.breadcrumbs li {
    color: #888;
    display: flex;
    gap: .4rem;
    line-height: 150%;
}

.breadcrumbs li::after {
    color: #888;
    content: '/';
}

.breadcrumbs li:last-child::after {
    display: none;
}

.breadcrumbs li a {
    color: #888;
}

.breadcrumbs li:first-child a {
    color: var(--blue)
}*/

.bcash {
    background: url(../images/Bcash-bg.svg) no-repeat left 171px top;
    margin-top: 5.9rem;
    padding-bottom: 6.9rem;
    position: relative;
}

.bcash::after {
    background: image-set(
        url(../images/cryptocurrency-golden-silver-coins-with-bitcoin-cash-symbol-bitcoin-symbol-isolated-white.png) 1x,
        url(../images/cryptocurrency-golden-silver-coins-with-bitcoin-cash-symbol-bitcoin-symbol-isolated-white@2x.png) 2x) no-repeat right bottom;
    background-size: contain;
    content: '';
    inset: 0;
    position: absolute;
    z-index: -1;
}

.bcash__content {
    max-width: 40.6rem;
}

.tm {
    color: #234652;
    font-family: var(--third-family);
    font-size: clamp(30px, 3.9vw, 75px);
    font-weight: 300;
}

.title1 {
    color: #234652;
    font-family: var(--third-family);
    font-weight: 500;
    font-size: clamp(20px, 1.8vw, 35px);
    line-height: 130%;
}

.bcash__desc {
    font-size: 1.125rem;
    line-height: 140%;
    margin-top: 3.25rem;
}

.text-widget {
    border-left: .25rem solid var(--orange);
    font-weight: 600;
    font-size: 1.375rem;
    line-height: 140%;
    margin-top: 2rem;
    padding-left: 1.9rem;
}

.screen2 {
    border: 1px solid #f0f1f4;
    border-bottom: 0;
    bordr-right: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.screen2__item {
    align-items: center;
    border-bottom: 1px solid #f0f1f4;
    border-right: 1px solid #f0f1f4;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    justify-content: center;
    line-height: 140%;
    padding: 3.1rem 2.5rem 2.3rem;
    text-align: center;
}

.screen2__desc {

}

.section-coins {
    background: image-set(
        url(../images/section-coins-bg.png) 1x,
        url(../images/section-coins-bg@2x.png) 2x
    ) no-repeat center top;
    color: #fff;
    margin-top: 5rem;
    padding-bottom: 3.9rem;
    padding-top: 3.9rem;
}

.section-coins__container {
    position: relative;
}

.section-coins__title {
    font-size: 1.5rem;
    text-align: center;
}

.coins-list {
    display: flex;
    justify-content: center;
    gap: 2.8rem;
    margin-top: 2rem;
}

.coins-list__item {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    text-align: center;
}

.coins-list__desc {
    font-weight: 600;
    font-size: .81rem;
}

.discount {
    align-items: center;
    background: #e59646;
    border-radius: 100%;
    box-shadow: 0 10px 25px 0 rgba(229, 150, 70, 0.25);
    color: #fff;
    display: flex;
    flex-direction: column;
    height: 7.9rem;
    justify-content: center;
    line-height: 160%;
    transform: rotate(15deg);
    text-align: center;
    text-transform: uppercase;
    width: 7.9rem;
}

.discount__per {
    font-size: 2.18rem;
}

.discount__bottom {
    font-weight: 600;
    font-size: .75rem;
}

.section-coins__discount {
    position: absolute;
    right: 4.2rem;
    top: -6.25rem;
}

.section-kyb {
    align-items: center;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
}

.title2 {
    color: #234652;
    font-family: var(--third-family);
    font-weight: 300;
    font-size: 50px;
    line-height: 120%;
}

.section-kyb__desc {
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 140%;
    margin-top: 2rem;
}

.list-square {
    margin-top: 1.4rem;
}

.list-square li {
    align-items: center;
    color: rgba(0, 0, 0, 0.7);
    display: flex;
    gap: .75rem;
    margin-bottom: .625rem;
}

.list-square li::before {
    border: .125rem solid #e59646;
    content: '';
    height: .5rem;
    width: .54rem;
}

.list-square li:last-child {
    margin-bottom: 0;
}

.why-list {
    display: grid;
    gap: .625rem;
    grid-auto-rows: 12rem;
    grid-template-columns: repeat(5, 1fr);
    margin-top: 2.3rem;
}

.why-list__item {
    display: flex;
    flex-direction: column;
    line-height: 140%;
    padding: .875rem 1rem; 
}

.why-list__item:nth-child(even) {
    background: #f7f9fa;
}

.why-list__number {
    color: var(--blue);
    font-weight: 600;
    margin-top: 0;
    text-align: right;
}

.why-list__item:nth-child(even) .why-list__number {
    color: #e59646;
}

.why-list__desc {
    font-size: .875rem;
    margin-bottom: auto;
    margin-top: auto;
}

.section-why__blue-btn {
    border-radius: 3.4rem;
    display: table;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3.5rem;
    padding: 1.3rem 2.25rem;
}

.section-subscribe {
    background: #19404C url(../images/subscribe-bg.svg) repeat-y center top;
    color: #fff;
    margin-top: 4.5rem;
    padding-bottom: 1.875rem;
    padding-top: 1.875rem;
}

.section-subscribe__container {
    align-items: center;
    display: flex;
    gap: 3.3rem;
    justify-content: center;
}

.section-subscribe__title {
    font-size: 1.5rem;
}

.section-subscribe__subtitle {
    font-weight: 300;
    font-size: 1.125rem;
    margin-top: 0.56rem;
}

.form-input {
    max-width: 29.6rem;
    position: relative;
    width: 100%;
}

.form-input__input {
    background: #f6f3f1;
    border-radius: 1.25rem;
    display: block;
    height: 2.6rem;
    width: 100%;
}

.form-input__submit-btn {
    position: absolute;
    right: .625rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.submit-btn {
    align-items: center;
    background: #1e6d7f;
    border-radius: 50%;
    display: flex;
    height: 1.75rem;
    justify-content: center;
    width: 1.75rem;
}


/* Select2 */
.select2-container--default .select2-selection{
    height: auto;
    background: #f5f5f4;
    border: 1px solid var(--grey-border);
    border-radius: 6px;
    padding: 11px 10px 11px 10px;
}
.select2-container--default .select2-selection.select2-selection--single{
    border: 1px solid var(--grey-border)!important;
    border-radius: 6px !important;
}

.select2-container--default .select2-selection__rendered{
    padding-left: 0!important;
    padding-right: 30px!important;
}
.select2-container--default .currency-row{
    display: flex;
    gap: 5px;
    align-items: center;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b{
    border-color: #2d3748 transparent transparent transparent;
    border-style: solid;
    border-width: 8px 7px 0 7px;
    height: 0;
    left: 50%;
    margin-left: -20px;
    margin-top: 11px;
    position: absolute;
    top: 50%;
    width: 0;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{
    border-color: transparent transparent #2d3748 transparent;
    border-width: 0 7px 8px 7px;
}

.select2-results__option--highlighted, .select2-results__option--selected{
    background-color:rgba(241,245,255,.95) !important;
}
.select2-results__option:hover{
    background-color:rgba(246,248,251,.95) !important;
}
.select2-container--default .currency-row .currency-icon{
    width: 34px;
    aspect-ratio: 1/1;
}
.select2-container--default .currency-row .currency-code{
    font-weight: 800;
    font-size: 18px;
    letter-spacing: .2px;
    color: var(--context-grey);
    margin-left: 10px;
}
.select2-container--default .currency-row .currency-rates{
    color:var(--muted)!important;
    margin-left: 10px;
}
@media (max-width: 630px) {
    .select2-container--default .currency-row .currency-rates {
        font-size: smaller;
        overflow: hidden;
    }
}
.select2-container--default .currency-row .currency-rates b{
    color:var(--text)!important;
}
.select2-container--default .select2-results__option{
    padding-left: 10px;
}
.select2-container--default .select2-results__option:not(:last-child){
    border-bottom: 1px solid var(--divider);
}
.select2-container--default .select2-results__option:hover, .select2-container--default .select2-results__option--selected{
    background: var(--white-hover);
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{

}
.select2-container--default .select2-dropdown{
    margin-top: 10px;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
}

/* Modal */
.orange-btn {
    align-items: center;
    background: var(--orange);
    border-radius: var(--brs);
    color: var(--dark-grey);
    display: inline-flex;
    font-weight: 600;
    font-size: 1rem;
    justify-content: center;
    line-height: 150%;
    padding: .5rem;
    text-align: center;
    transition: .4s;
}
.overlay {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    display: none;
    inset: 0;
    position: fixed;
    z-index: 90;
}

.popup {
    background: var(--light-grey);
    border-radius: var(--brs);
    display: none;
    left: 50%;
    overflow: hidden;
    position: fixed;
    max-width: 33.625rem;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 91;
}

.popup__header {
    background: var(--green);
    padding: 0.75rem;
    position: relative;
}

.popup__logo {
    display: block;
    margin: 0 auto;
    width: 6rem;
}

.close-btn {
    cursor: pointer;
    display: block;
    fill: var(--bone);
    height: 1rem;
    width: 1rem;
}

.popup__close-btn {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.popup__content {
    padding: 1.5rem;
    padding-bottom: 2.5rem;
}

.popup__title {
    color: var(--green);
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 133%;
    text-align: center;
}
.popup__footer {
    display: flex;
    font-weight: 600;
    justify-content: space-between;
    margin-top: 1.5rem;
}

.popup__link {
    color: var(--blue);
}

.popup__create {
    color: var(--context-grey);
}

.popup__create a {
    color: var(--blue);
}
.popup--full {
    max-width: 60rem;
}

.popup__article {
    background: #f5f5f4;
    border: 1px solid var(--grey-border);
    border-radius: .5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    line-height: 150%;
    max-height: 24.75rem;
    margin-top: 1.5rem;
    overflow-y: auto;
    padding: .75rem;
}

.popup__btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.popup__btns .orange-btn, .popup__btns .green-btn {
    height: 3.25rem;
    width: 15rem;
}

@media (max-width: 1030px) {
    .popup--full {
        max-width: 90%;
    }
}

@media (max-width: 630px) {
    .popup__article {
        height: 21.43rem;
        margin-top: .75rem;
        padding: .75rem;
    }
    .popup__btns .orange-btn, .popup__btns .green-btn {
        flex-grow: 1;
        height: 2.5rem;
        width: auto
    }
    .popup__btns {
        margin-top: .75rem;
    }
}

/* Iti & request form modal */
.iti {
    display: block;
}
.iti__arrow {
    position: absolute;
    right: 12px;
}

.iti__country-container {
    color: var(--context-grey);
    padding: 0;
}

.iti__country-container:after {
    background: var(--grey-border);
    border-radius: .25rem;
    content: '';
    height: 1.5rem;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    z-index: 2;
}

.iti__selected-country-primary {
    gap: .75rem;
}

.iti__tel-input {
    padding-left: 7rem !important;
}

.iti__selected-country {
    padding-right: .75rem;
    width: 7rem;
}

.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])) .iti__selected-country-primary:hover,
.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])) .iti__selected-country:has(+ .iti__dropdown-content:hover) .iti__selected-country-primary {
    background: transparent;
}

.myform__label {
    color: var(--context-grey);
    display: block;
    font-size: .875rem;
    line-height: 143%;
    margin-top: 1.5rem;
}

.myform__input {
    background: #f5f5f4;
    border: 1px solid var(--grey-border);
    border-radius: var(--brs);
    display: block;
    font-size: 1rem;
    height: 3.25rem;
    padding: 0 1rem;
    width: 100%;
}

.myform__orange-btn {
    display: table !important;
    margin: 1.5rem auto 0!important;
    width: 15rem;
}

.myform input.invalid{
    border:1px solid red;
}
.myform .success-message{
    margin-top:20px;
    font-size: 30px;
    color: #246c2a;
    text-align: center;
    border-radius: 20px;
    padding: 20px;
    background: rgba(197, 243, 218, .5);
}
.convert-box .btn-convert:disabled{
    cursor: not-allowed;
    filter: brightness(.90) opacity(.8);
}
.convert-box .btn-convert:disabled:hover{

}