@font-face {
    font-family: 'AvenirNext-Heavy';
    src: url('fonts/AvenirNext-Heavy.eot');
    src: url('fonts/AvenirNext-Heavy.eot?#iefix') format('embedded-opentype'),
    url('fonts/AvenirNext-Heavy.woff2') format('woff2'),
    url('fonts/AvenirNext-Heavy.woff') format('woff'),
    url('fonts/AvenirNext-Heavy.ttf') format('truetype'),
    url('fonts/AvenirNext-Heavy.svg#AvenirNext-Heavy') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'AvenirNext-Medium';
    src: url('fonts/AvenirNext-Medium.eot');
    src: url('fonts/AvenirNext-Medium.eot?#iefix') format('embedded-opentype'),
    url('fonts/AvenirNext-Medium.woff2') format('woff2'),
    url('fonts/AvenirNext-Medium.woff') format('woff'),
    url('fonts/AvenirNext-Medium.ttf') format('truetype'),
    url('fonts/AvenirNext-Medium.svg#AvenirNext-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'AvenirNext-Bold';
    src: url('fonts/AvenirNext-Bold.eot');
    src: url('fonts/AvenirNext-Bold.eot?#iefix') format('embedded-opentype'),
    url('fonts/AvenirNext-Bold.woff2') format('woff2'),
    url('fonts/AvenirNext-Bold.woff') format('woff'),
    url('fonts/AvenirNext-Bold.ttf') format('truetype'),
    url('fonts/AvenirNext-Bold.svg#AvenirNext-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

html {
    background: black;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
}

h1, h2 {
    font-family: 'AvenirNext-Heavy', sans-serif;
}

h1 {
    font-size: 70px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 20px;
    font-family: 'AvenirNext-Heavy', sans-serif;
    color: #ffffff;
}

/* Hide all steps by default: */
.step {
    display: none;
    flex-direction: column;
}

input, select, textarea, input::placeholder {
    caret-color: #AC0204;
}

header {
    margin: 0 auto;
    padding: 0 15px;
    max-width: 400px;
}

header .logo {
    display: flex;
    margin: 20px auto 0 auto;
    width: 85px;
    height: 74px;
}

header .logo img {
    width: 85px;
    height: 74px;
}

.bd-bgd {
    background: url(assets/bgd.png);
    background-position: center;
    background-size: cover;
}

.bgd-overlay {
    background: rgba(0, 0, 0, 0.9);
    min-height: 100vh;
    overflow: hidden;
    display: block;
    position: relative;
    padding-bottom: 210px;
    box-sizing: border-box;
}

.container {
    max-width: 400px;
    margin: 60px auto 0;
    padding: 0 15px;
}

.container h2 {
    color: white;
    text-transform: uppercase;
    text-align: left;
}

.container .img {
    width: 160px;
    height: 160px;
}

.container form {
    display: flex;
    flex-direction: column;
    font-family: 'AvenirNext-Medium';
}

.container form .half-width {
    display: inline-flex;
    flex-wrap: nowrap;
    gap: 10px;
    flex-direction: row;
}

.container form .half-width input {
    max-width: 150px;
    width: 100%;
}

.container form input[type=email], .container form input[type=text], .container form input[type=password], .container form input[type=tel], .container form select {
    height: 31px;
    margin-bottom: 25px;
    padding: 20px 30px;
    background: rgba(70, 70, 70, 0.4);
    border: 1px solid #666666;
    border-radius: 60px;
    font-size: 16px;
    outline: 0;
    color: #ffffff;
    font-family: 'AvenirNext-Medium', serif;
}

.container form select {
    height: 73px;
    background: url(assets/down-arrow.svg) no-repeat;
    background-position: right 25px center;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    padding: 4px 30px
}

.container form .link-right {
    margin-top: -10px;
    margin-bottom: 15px;
    text-align: right;
    color: #AC0204;
}

.container form .disclaimer {
    color: white;
    font-size: 12px;
    margin-bottom: 25px;
    display: none;
}


.container form .disclaimer a, .container form .text a, .container form a, .container form .red {
    color: #AC0204;
}

.container form .sms {
    color: white;
    font-size: 18px;
    margin-bottom: 25px;
}

.container form .sms a {
    color: #AC0204;
}

.container form .sms b {
    font-family: 'AvenirNext-Bold', sans-serif;
    color: #AC0204;
}

.container form p {
    color: white;
    margin-top: 0;
}

.container form img {
    margin: 0 auto;
}

.container form button {
    transition: all 0.1s ease-out;
    height: 75px;
    margin-bottom: 25px;
    background: #AC0204;
    color: white;
    border: 0;
    border-radius: 60px;
    font-family: 'AvenirNext-Bold';
    font-size: 16px;
    text-transform: uppercase;
    outline: 0;
    cursor: pointer;
}

.container form button:hover {
    background: #8e0204;
    transform: scale(1.1);
    transition: all 0.1s ease-in-out;
}

.container form .checkbox {
    display: inline-flex;
    cursor: pointer;
    position: relative;
    outline: 0;
}

.container form .checkbox > span {
    color: #777777;
    padding: 3px;
}

.container form .checkbox > input {
    height: 20px;
    width: 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    border: 1px solid #666666;
    border-radius: 4px;
    outline: none;
    transition-duration: 0.3s;
    background-color: rgba(70, 70, 70, 0.4);
    cursor: pointer;
}

.container form .checkbox > input:checked {
    border: 0;
    background-color: #8e0204;
}

.container form .checkbox > input:checked + span::before {
    content: '\2713';
    display: block;
    text-align: center;
    color: white;
    position: absolute;
    left: 8px;
    top: 3px;
}

.container form .text {
    margin-top: 50px;
    color: white;
}

.container form .error {
    display: none;
    flex-direction: row;
    background: #F9461C;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.container form .error img {
    width: 40px;
    height: 40px;
    flex-grow: 1;
}

.container form .error .text {
    padding: 0;
    margin: 0 15px;
    flex-grow: 3;
}

.container form .error .text h4 {
    padding: 0;
    margin: 0;
}

.container form .error .text p {
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.container form .button-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.container form .button-wrapper .button-picker {
    text-align: center;
}

.container form .button-wrapper .button-picker button {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    padding-top: 10px;
    margin-bottom: 0;
}

.container form .button-wrapper .button-picker h4 {
    font-family: 'AvenirNext-Heavy';
    font-size: 16px;
    color: white;
    text-transform: uppercase;
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}

[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #666666;
    border-radius: 100%;
    background: rgba(70, 70, 70, 0.4);
}

[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #AC0204;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.center {
    text-align: center !important;
}

footer {
    width: 100%;
    height: 210px;
    margin: 0 auto;
    border-top: 1px solid #181818;
    position: absolute;
    bottom: 0;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'AvenirNext-Medium';
}

footer .footer-links {
    padding: 15px 0;
}

footer .footer-links a {
    font-size: 16px;
    margin: 0 15px;
    color: white;
    text-decoration: none;
}

footer .footer-links a:hover {
    color: #AC0204;
}

footer .footer-copy p {
    text-align: center;
    font-size: 14px;
    color: #555555;
    margin: 0;
    padding: 15px 0;
}

@media only screen and (max-width: 415px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 20px;
    }

    header .logo {
        width: 55px;
        height: 50px;
    }

    header .logo img {
        width: 55px;
        height: 50px;
    }

    .bgd-overlay {
        padding-bottom: 110px;
    }

    .container {
        margin-top: 30px;
        padding-bottom: 0;
    }

    .container form input[type=email], .container form input[type=text], .container form input[type=password], .container form input[type=tel], .container form select {
        height: 18px;
        margin-bottom: 15px;
    }

    .container form select {
        height: 60px;
    }

    .container form button {
        height: 60px;
    }

    .container form .link-right {
        margin-top: 0;
    }

    .container form .button-wrapper {
        flex-direction: column;
    }

    footer {
        display: block;
        position: relative;
        margin: 15px 0;
        height: 310px;
    }

    footer .footer-links {
        display: flex;
        flex-direction: column;
        text-align: center;
        padding: 15px 0;
    }

    footer .footer-links a {
        padding: 7px 0;
    }

    footer .footer-copy {
        text-align: center;
        padding-bottom: 15px;
    }
}

.logos {
    display: inline-flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    justify-content: center;
}

.logos img {
    height: 45px;
}

.logos img:first-child {
    margin-right: 20px;
}

@media screen and (max-width: 700px) {
    .logos {
        flex-direction: column;
    }

    .logos {
        margin-bottom: 15px;
        text-align: center;
    }
}

.cc-icons-container {
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
}

.cc-icons-container img {
    height: 35px;
}

/* The container */
.tos-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 15px;
    color: white;
    font-family: 'AvenirNext-Medium', serif;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.tos-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.tos-container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.tos-container input:checked ~ .checkmark {
    background-color: #AC0204;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.tos-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.tos-container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.allsecure_container {
    height: 73px;
    margin-bottom: 25px;
}


@media screen and (max-width: 415px) {
    .allsecure_container {
        height: 60px;
        margin-bottom: 15px;
    }
}

.wide-container {
    margin: 60px auto 0;
    padding: 0 15%;
    color: white;
    font-family: 'AvenirNext-Medium', serif;
}

.payment-details {
    display: none;
}

.payment-details p {
    color: gray !important;
}


/*
------------------------------
------------------------------
         OVO JE NOVO
------------------------------
------------------------------
*/



.container form .row-align {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.container form .row-align .row-left {
    display: flex;
    flex-direction: row;
}

.container form .row-align .row-left .visa {
    background: url(/assets/cards_sprite.svg) 0 0;
    width: 38px;
}

.container form .row-align .row-left .mastercard {
    background: url(/assets/cards_sprite.svg) -42px 0;
    width: 38px;
}

.container form .row-align .row-left .maestro {
    background: url(/assets/cards_sprite.svg) -82px 0;
    width: 38px;
}

.container form .row-align .row-left img {
    height: 23px;
    margin-right: 10px;
}

.container form .row-align button {
    width: 16px;
    height: 16px;
    padding: 0;
    background: none;
}

.container form .row-align button:hover {
    background: none;
}

.container form p {
    color: white;
    margin-top: 0;
}

.container form p span {
    color: #777777;
}

.container form .separator {
    width: 100%;
    height: 1px;
    background: #181818;
    margin-bottom: 20px;
}

.container form img {
    margin: 0 auto;
}

.navigation {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 60px;
    margin-top: 20px;
}

.full-width {
    max-width: 100%;
}

@media screen and (max-width: 587px) {
    .full-width {
        max-width: 400px;
    }

    .navigation {
        padding: 0;
    }
}
