@font-face {
    font-family: "Wix Madefor Display";
    src: url("../fonts/WixMadeforDisplayRegular.woff2") format("woff2");
    font-weight: 400;
}
@font-face {
    font-family: "Roboto Slab";
    src: url("../fonts/RobotoSlabSemiBold.woff") format("woff");
    font-weight: 600;
}

body, html {
  margin: 0;
  min-height: 100%;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}
* {
	box-sizing: border-box;
	outline: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

a {
    transition: 0.2s;
}
svg {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

.page {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    overflow: hidden;
    min-height: calc(100vh - 179px);
}
@media (max-width: 767px){
    .page {
        min-height: calc(100vh - 132px);
    }
}

.header {
    width: 100%;
    height: 179px;
    z-index: 10;
    background: #0C2C48;
}

.header__inner {
    max-width: 1240px;
    padding-left: 40px;
    padding-right: 40px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    height: 179px;
}

@media (max-width: 767px){
    .header__inner {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.header__inner .logo {
    max-width: 80%;
}

.logo img,
.logo svg {
    display: block;
    max-width: 100%;
}

.header__btn-exit {
    width: 160px;
    height: 36px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 15px 10px;
    border: 1px solid #2D3F8A;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #757981;
    cursor: pointer;
}

.page__main {
    display: flex!important;
    flex-direction: column;
    flex-grow: 1;
    width: 100%;
    position: relative;
    min-height: calc(100vh - 179px);
}
@media (max-width: 767px) {
    .page__main {
        min-height: calc(100vh - 270px);
    }
}


.footer {
    background: #0C2C48;
}
@media (max-width: 767px){
    .footer {
        padding-top: 30px;
        padding-bottom: 30px;
        height: 270px;
        display: flex;
        align-items: center;
    }    
}

.footer__inner {
    max-width: 1240px;
    padding-left: 40px;
    padding-right: 40px;
    height: 179px;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between;
    display: flex;
    align-items: center;
    color: #fff;
}

@media (max-width: 767px){
    .footer__inner {
        padding-left: 15px;
        padding-right: 15px;
        display: block;
        text-align: center;      
        height: auto; 
        padding-top: 0;
        padding-bottom: 0;
    }
}

@media (max-width: 767px){
    .footer__inner .logo {
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
    }
}

.footer__inner p {
    margin: 0;
    font-weight: 600;
    font-family: 'Roboto Slab', sans-serif, serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    color: #FFFFFF;
    margin-bottom: 10px;
    text-align: center;
}

.footer__btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 38px;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Wix Madefor Display', sans-serif, serif;
    font-weight: 400;
    font-size: 10px;
    line-height: 140%;
    text-align: center;
    background: #ECE3D6;
    border-radius: 5px;
    color: #0C2C48;
    width: 260px;
    padding-left: 20px;
    padding-right: 20px;
}
@media screen and (max-width: 767px){
    .footer__btn {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

@media screen and (max-width: 767px){
    .footer__btn:last-child {
        margin-top: 15px;    
    }    
}

.footer__btn span {
    display: flex;
    border-left: 1px solid #0C2C48;
    padding-left: 10px;
    margin-left: 10px;    
}

.footer__btn img {
    min-width: 12px;
    display: block;
}

.disable {
    display: none !important;
}

.MuiCircularProgress-root {
    color: #0C2C48 !important;
}
.CircularContainer svg circle {
    stroke: #0C2C48;
}
