@charset "utf-8";
/* CSS Document */

/*********************** General ************************/
html {
    font-family: 'Roboto', sans-serif !important;
    -ms-text-size-adjust: 100%;
}

html, body {
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: #f7f7f9;
    font-size: 14px;
    line-height: 1.6;
    color: #1f1f1f;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/************ Variables *************/
:root {
    --black: #000000;
    --white: #FFFFFF;
    --dark-blue: #16066b;
    --light-blue: #5A8FDB;
    --yellow: #FCD006;
    --red: #D11F1F;
    --light-grey: #f7f7f9;
    --grey: #C0C7D7;
    --form-grey: #707582;
}

.dark_blue { background-color: var(--dark-blue); }
.light_blue { background-color: var(--light-blue); }
.light_blue_font { color: var(--light-blue); }
.yellow { background-color: var(--yellow); }
.grey { background-color: var(--grey); }


/*********************** Fonts ************************/
h1 {
    color: var(--dark-blue);
    font-family: museo-sans-rounded, sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 52px;
    line-height: 1.3;
    margin-top: 0;
}

@media (max-width: 650px) {
    h1 {
        font-size: 48px;
    }
}

h2 {
    color: var(--dark-blue);
    font-family: museo-sans-rounded, sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 40px;
}

h3 {
    font-family: museo-sans-rounded, sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 26px;
    color: var(--light-blue);
}

h4 {
    font-family: museo-sans-rounded, sans-serif;
    font-weight: 800;
    font-style: normal;
}

p {
    font-size: 16px;
    font-weight: 400;
}

ul, li {
    list-style: none;
    padding-inline-start: 0px;
    font-size: 14px;
}

a {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

/*********************** Wrappers ************************/
.wrapper_large, .wrapper_small, .wrapper_opening {
    position: relative;
    max-width: 75%;
    margin: 0 auto;
    z-index: 4;
}

.wrapper_opening {
    max-width: 38%;
    width: 700px;
    text-align: center;
}

.wrapper_small {
    max-width: 50%;
    width: 900px;
}

.wrapper_large {
    width: 1300px;
}

@media (max-width: 1200px) {
    .wrapper_large {
        max-width: 90%;
    }

    .wrapper_small,
    .wrapper_opening {
        max-width: 60%;
    }
}

@media (max-width: 950px) {
    .wrapper_small
    .wrapper_opening {
        max-width: 73%;
    }
}

@media (max-width: 650px) {
    .wrapper_large,
    .wrapper_small,
    .wrapper_opening {
        max-width: calc(100% - 40px);
    }
}

.wrapper_small h1,
.text_block h1 {
    text-align: center;
}

.wrapper_small h2 {
    color: var(--dark-blue);
}

.wrapper_small h3 {
    color: var(--dark-blue);
}

/*********************** Buttons ************************/
.button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
    padding: 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 46px;
    background-color: var(--yellow);
    text-align: center;
    color: var(--dark-blue);
    font-family: 'Roboto', sans-serif !important;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    border: none;
    outline: none;
    border-radius: 5px;
    cursor: pointer;
    opacity: 1;
    box-sizing: border-box;
    box-shadow: 0px 5px 10px #00000014;
    transition: 0.1s all ease-in-out;
}

.button i,
input[type="submit"] i,
input[type="reset"] i,
input[type="button"] i {
    margin-right: 10px;
}

.button:hover, input[type="submit"]:hover {
    opacity: 0.90;
    transition: 0.15s all ease-in-out;
}

.button:active, input[type="submit"]:active {
    transform: scale(0.96);
    background-position: 500px;
    transition: 0.1s all ease-in-out;
    outline: none;
}

.buttons_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

.signup_button {
  background-color: var(--dark-blue) !important;
  color: var(--white) !important;
}

.test_button {
    background-color: var(--light-blue) !important;
    color: var(--white) !important;
}

.settings_button {
    background-color: var(--grey) !important;
    color: var(--dark-blue) !important;
}

.danger_button {
    background-color: var(--red);
    color: var(--white);
}

.page {
    width: 100%;
    overflow-x: hidden;
}

.error_page {
    text-align: center;
}

.error_page h1 {
    font-size: 180px;
}

@media (max-width: 600px) {
    .error_page h1 {
        font-size: 100px;
    }
}

/*********************** No Subscription ************************/
.no_subscription {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.no_subscription .button {
    margin: 35px auto 50px;
}

@media (max-width: 600px) {
    .no_subscription .button {
        width: 100%;
    }
}