/** initial setup **/
.nano {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.nano > .nano-content {
    position: absolute;
    overflow: scroll;
    overflow-x: hidden;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.nano > .nano-content:focus {
    outline: thin dotted;
}

.nano > .nano-content::-webkit-scrollbar {
    display: none;
}

.has-scrollbar > .nano-content::-webkit-scrollbar {
    display: block;
}

.nano > .nano-pane {
    background: rgba(0, 0, 0, .25);
    position: absolute;
    width: 10px;
    right: 0;
    top: 0;
    bottom: 0;
    visibility: hidden \9; /* Target only IE7 and IE8 with this hack */
    opacity: .01;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.nano > .nano-pane > .nano-slider {
    background: #444;
    background: rgba(0, 0, 0, .5);
    position: relative;
    margin: 0 1px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.nano:hover > .nano-pane, .nano-pane.active, .nano-pane.flashed {
    visibility: visible \9; /* Target only IE7 and IE8 with this hack */
    opacity: 0.99;
}

* {
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Work Sans', sans-serif;
    font-weight: normal;
    background: #FFF;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #FFF !important;
    opacity: 1; /* Firefox */
    text-align: center;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #FFF;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: #FFF;
}

.btn {
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    border-radius: 24px;
    padding: 5px 40px;
    height: 48px;
    font-size: 20px;
}

.btn.btn-primary {
    background: #27DA92;
    border-color: #22C986;
}

.btn.btn-default {
    border: 1px solid #000000;
    line-height: 38px;
}

.btn.btn-primary:hover {
    background: #22C986;
    border-color: #22C986;
}

.form-group {
    margin-bottom: 32px;
}
#loginForm label{
    display: none;
}
input.form-control {
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    border-radius: 24px;
    height: 48px;
    border-radius: 24px;
    background-color: rgba(255, 255, 255, 0.35);
    padding: 0 32px;

}
#butInstall{
    background: #27DA92;
    border-radius: 24px;
    padding: 5px 40px;
    height: 48px;
    font-size: 20px;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    border: 1px solid transparent;
}
.top input.form-control{
    color: #FFF;
}
.login input.form-control {
    box-shadow: 0px 5px 18px rgba(0, 0, 0, 0.23);
    border: none;
}
.top .btn[hidden]{
    display: none;
}
.error {
    color: red;
}

.top {
    overflow: hidden;
    background: url("../images/logo-aircheck-big.svg") -162px 15px no-repeat, linear-gradient(#45abc5 0%, #386fae 100%);
    filter: drop-shadow(0px 5px 18px rgba(0, 0, 0, 0.2));
    border-bottom-right-radius: 36px;
    border-bottom-left-radius: 36px;
    padding: 32px;
    color: #FFF;
    margin-bottom: 32px;
    position: relative;
    z-index: 10;
}

.top.fullTop {
    background: linear-gradient(#45abc5 0%, #386fae 100%);
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    margin-bottom: 0;
    padding: 32px;
}
.bottom {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
}
.bottom.fullTop {
    display: none;
}

.login .top {
    padding: 32px 48px;
}

.login .top .error {
    color: #FFF;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.top .logo {
    background-image: url("../images/logo-aircheck.svg");
    background-size: 100%;
    background-repeat: no-repeat;
    width: 50px;
    height: 60px;
    position: absolute;
    top: 16px;
    left: 16px;
}

.top h2 {
    margin-bottom: 0;
}

.top .submenu {
    position: absolute;
    bottom: 0;
    display: flex;
    left: 24px;
    right: 24px;
    justify-content: space-around;
}

.top .submenu a {
    background: rgba(38, 101, 133, .27);
    color: #FFF;
    padding: 8px 10px 8px 10px;
    font-weight: normal;
    border-top-right-radius: 16px;
    border-top-left-radius: 16px;
    text-transform: uppercase;
}

.top .submenu a.active {
    background: rgb(38, 101, 133);
}

.bottom {
    margin-top: 8px;
    margin-bottom: 16px;
}

.login .top form {
    max-width: 360px;
    margin: 64px auto;
}

.login input {
    background-repeat: no-repeat;
    background-position-x: 95%;
    background-position-y: 50%;
}

.login input#email {
    background-image: url("../images/user.svg");
}

.login input#password {
    background-image: url("../images/lock.svg");
}

.login input#rememberMe {
    margin-right: 8px;
    width: 16px;
}

.login h2 {
    font-size: 40px;
    font-weight: 600;
    margin-top: 48px;
    margin-bottom: 0;
}

.login .top p {
    margin-bottom: 36px;
}

.login .safe {
    margin: 24px 0;
}
.languages{
    position: absolute;
    right: 15px;
    top: 12px;
}
.container.registration, .container.login{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}
.registration input {
    border: 1px solid #000;
    height: 56px;
    -webkit-border-radius: 28px;
    -moz-border-radius: 28px;
    border-radius: 28px;
    z-index: 2;
    position: relative;
}

.registration label {
    color: #45AAC5;
    background: #FFF;
    position: absolute;
    top: -10px;
    left: 40px;
    padding: 0 8px;
    font-size: 12px;
    transition: .3s ease-out;
    z-index: 3;
}

.registration .form-group {
    margin-bottom: 40px;
}

.registration input:focus + label, .registration input:not(:placeholder-shown) + label {
    top: 60px;
    z-index: 1;

}

.registration input:focus {
    background: #f9f9f9;
    box-shadow: 0px 5px 7px rgba(66, 157, 192, 0.3);
    border: none;

}

.registration input:not(:placeholder-shown) {
    background: #f9f9f9;
    border: none;

}

.registration .registerForm {
    overflow: hidden;
}

.registration .registerForm p {
    font-weight: 500;
    font-size: 14px;
    text-align: left;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.registration select {
    border: 1px solid #000;
    height: 60px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    z-index: 2;
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
    text-align: center;
}

.registration .form-group.no-margin {
    margin-bottom: 24px
}

.registration label.radioContainer {
    display: block;
    border-radius: 15px;
    background: #F3F3F3;
    height: 60px;
    position: relative;
    overflow: hidden;
    line-height: 60px;
    color: #000000;
    font-weight: 500;
    cursor: pointer;
    left: auto;
    top: auto;
}
.registration .step2 .choose-photo p{
    margin: 20px 0 40px 0;
    text-align: center;
    padding: 0 30px;
}
.registration .step2 .choose-photo a{
     margin-bottom: 30px;
 }
.radioContainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.registration .radioContainer p {
    position: relative;
    z-index: 5;
    margin: 0;
    text-align: center;
}

.radioContainer:hover input ~ .checkmark {
    background-color: #ccc;
}

.radioContainer input:checked ~ .checkmark {
    background-color: #ccc;
}

.radioContainer:after {
    content: "";
    position: absolute;
    display: none;
}

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

/* Style the checkmark/indicator */
.radioContainer .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);
}

.row.labels > div[class^="col-"] {
    padding-left: 8px;
    padding-right: 8px;
}

.buttons {
    height: 100px;
    border-radius: 50px;
    background: linear-gradient(#45abc5 0%, #386fae 100%);
    box-shadow: 0px 5px 18px rgba(0, 0, 0, 0.23);
    float: left;
    position: relative;
    width: 100%;
    margin-bottom: 16px;
}

.buttons > a {
    width: 50%;
    height: 100%;
    float: left;
    line-height: 100px;
    color: #FFF;
    cursor: pointer;
}

.buttons > a:first-child {
    border-right: 1px solid #FFF;
}

.buttons .button-prev {
    background-image: url("../images/back.svg");
    background-repeat: no-repeat;
    background-position: center center;
}

.buttons .button-next {
    background-image: url("../images/next.svg");
    background-repeat: no-repeat;
    background-position: center center;
}

.buttons .button-next2 {
    background-image: url("../images/next.svg");
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}
.buttons .button-next2.active{
    pointer-events: auto;
    opacity: 1;
}
.buttons .button-next2.active.spinning{
    background-image: none;
    pointer-events: none;
}
.buttons .button-next2 .spinner{
    display: none;
}
.buttons .button-next2.active.spinning .spinner{
    display: block;
}
#profile-image {
    display: block;
    text-align: center;
    height: 400px;
    background: #F6F6F6;
    margin: 10px auto 20% auto;
    position: relative;
    overflow: hidden;
}
#profile-image.transparent{
    background: none;
}
.noShow{
    display: none;
}
.profile-circle {
    border-radius: 50%;
    border: 2px solid #1be3a8;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    position: absolute;
    z-index: 3;
}

#profile-image img {
    display: block;
    position: absolute;
    z-index: 0;
}

#profile-image .take-photo {
    z-index: 1;
    position: relative;
    margin: 120px auto;
    width: 200px;
    height: 160px;
}

#video {
    transform: translate(-50%, -50%) scale(-1, 1); /*For Firefox (& IE) */
    -webkit-transform: translate(-50%, -50%) scale(-1, 1);
    left: 50%;
    top: 50%;
    z-index: 1;
    position: absolute;
}

.action-button {
    width: 80px;
    height: 80px;
    right: 10px;
    bottom: -43px;
    border: 0;
    background-color: #27da92;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 50%;
    position: absolute;
    z-index: 4;
}
.action-button.retake{
    top: 460px;
    right: auto;
    left: 20%;
    bottom: auto;
}
.action-button.home{
    left: auto;
    right: 20%;
    top: 240px;
    width: 40px;
    height: 40px;
    background-size: 50%;
}
#photo-button {
    background-image: url('../images/take-photo.svg');
}

#upload-button {
    background-image: url('../images/upload.svg');
    background-size: 30%;
    z-index: 10;
}

#take-again {
    background-image: url("../images/take-again.svg");
    z-index: 11;;
}
#accept{
}
#accept.active{
    opacity: 1;
}
#photo-button span {
    top: 40px;
    position: relative;
    color: #000;
}

#preview {
    position: absolute;
    transform: translate(-50%, -50%) scale(-1, 1); /*For Firefox (& IE) */
    -webkit-transform: translate(-50%, -50%) scale(-1, 1);
    width: 300px;
    height: 400px;
    top: 50%;
    left: 50%;
    z-index: 2;
}

.btn-accept {
    position: absolute;
    right: 5%;
    bottom: 60px;
    border: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: none;
}

.btn-accept.active {
    background: url('../images/accept.png') top center no-repeat;
    background-size: 100%;
    border: 0;
    display: block;
}

#no-glasses {
    position: absolute;
    top: 23%;
    left: 20%;
}

#no-hat {
    position: absolute;
    bottom: 20%;
    left: 20%;
}

.over {
    overflow: hidden;
}

.izjava {
    background: #FFF;
    padding: 8px;
    color: #0c0c0c;
    font-size: 14px;
    height: 800px;
    text-align: left;
}

.izjava li {
    margin-bottom: 15px;
}

.izjava .row p {
    width: 100%;
    display: block;
    border-bottom: 1px solid #0c0c0c;
    font-size: 16px;
    height: 32px;
    padding: 0 20px;
    line-height: 32px;
}

.izjava .signature-pad {
    margin-top: 40px;
    border-radius: 20px;
    background: #f6f6f6;
    overflow: hidden;

}

.izjava .signature-body small {
    font-size: 11px;
    text-align: center;
    display: block;
    margin-top: 5px;
    line-height: 1.1;
}

.izjava #signature-canvas {
    width: 100%;
}

.izjava .btn-accept {
    position: relative;
    display: block;
    right: auto;
    left: auto;
    bottom: auto;
    margin: auto;
    margin-top: 50px;
}

.izjava .clear {
    display: block;
    background: none;
    border: none;
    margin: 10px auto;
}

.izjava .signature-pad--actions {
    text-align: center;
}

.izjava .date {
    margin-top: 20px;
    margin-bottom: 20px;
    float: left;
}

.izjava .row {
    margin-top: 30px;
    float: left;
    margin-left: -20px;
    margin-right: -20px;
}

.izjava .row .col-md-4, .izjava .row .col-md-5 {
    padding-left: 20px;
    padding-right: 20px;
}

.signature-pad--body {
    border: none !important;
    position: relative;
}

.signature-pad--body span {
    top: 10px;
    position: absolute;
    z-index: 43;
    left: 10px;
}

nav {
    height: 64px;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
}

nav a {
    display: flex;
    width: 64px;
    height: 64px;
    border-radius: 32px;
    background: rgba(0, 0, 0, .16);
    justify-content: center;
    align-items: center;
}

nav a.active {
    top: -100px;
    position: relative;
    height: 164px;
    background: linear-gradient(#308398 0%, #19416f 100%);
}

nav a.active svg {
    position: relative;
    margin-top: 100px;
}

nav a:hover svg path, nav a.active svg path {
    fill: #27DA92;
}

nav a:hover svg line {
    stroke: #27DA92;
}

.profile .top {
    padding-top: 16px;
}

.profile .logout {
    position: absolute;
    right: 16px;
    top: 16px;
}

.profile a.logout {
    color: #FFF;
}

.profile .top.halfTop {
    padding: 16px 32px;
    height: 218px;
}

.profile .profile-image {
    width: 180px;
    height: 180px;
    margin: 12px auto 40px auto;
    border: 3px solid #FFF;
    position: relative;
    overflow: hidden;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.profile .halfTop .profile-image {
    width: 70px;
    height: 70px;
    float: left;
}

.profile .profile-image img {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.profile .profile-name h2 {
    text-align: left;
    font-weight: 600;
    font-size: 28px;
    margin-top: 16px;
    margin-bottom: 56px;
    text-align: left;
}

.profile .halfTop .profile-name {
    display: inline-block;
}

.profile .halfTop .profile-name h2 {
    font-size: 20px;
    margin-bottom: 12px;
}

.profile .top-bottom {
    position: absolute;
    height: 72px;
    width: 100%;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .07);
    border-top-right-radius: 36px;
    border-top-left-radius: 36px;
}

.profile .top-bottom .add-ticket {
    width: 56px;
    height: 56px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    float: right;
    background-color: #27DA92;
    line-height: 56px;
    color: #FFF;
    font-size: 42px;
    margin-top: 8px;
    margin-right: 8px;
}

.profile .top-bottom .bar {
    height: 26px;
    padding: 5px 30px;
}

.profile .top-bottom .bar-back {
    height: 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.3);
    overflow: hidden;
    position: relative;
}

.profile .top-bottom .bar-back span {
    position: absolute;
    left: 20px;
    top: 0;
    line-height: 36px;
}

.profile .top-bottom .bar-full {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#4589b9+0,42bcb0+100 */
    background: #27DA92;
    height: 100%;

}

.profile .top-bottom .bar-full.red {
    background: #e2181f;
}

.profile .top-bottom .upcomingTicket {
    width: calc(100% - 64px);
    float: left;
}
.profile .top-bottom .upcomingTicket .ticketStatus{
    padding-top: 3px;
}
.profile .top-bottom span {
    font-size: 18px;
    margin-left: 48px;
    line-height: 72px;
    float: left;
}

.profile .home-info {
    padding: 0 16px;
}

.profile .home-info > div {
    background: #F5F5F5;
    height: 72px;
    border-radius: 36px;
    margin-bottom: 36px;
    padding: 0 24px;
    font-weight: bold;
}

.profile .home-info > div .icon {
    float: left;
    text-align: left;
}

.profile .home-info > div .icon .img-container {
    display: block;
    margin: 12px auto 4px 0;
    height: 30px;
}

.profile .home-info > div .icon img {
}

.profile .home-info > div span {
    height: 30px;
    line-height: 30px;
    color: #44A7C4;
    display: block;
    margin-top: 10px;
    margin-bottom: 6px;
    font-size: 36px;
}

.tickets {
    margin-top: 24px;
}

.tickets .ticketType {
    width: 100%;
    max-width: 600px;
    height: 60px;
    border-radius: 30px;
    background: rgba(0, 0, 0, .25);
    margin-bottom: 24px;
    line-height: 60px;
    color: #FFF;
    overflow: hidden;
    font-size: 16px;
    font-weight: bold;
    text-align: left;
    position: relative;
}

.tickets .ticketTypeOverlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background: rgba(0, 0, 0, .55);
    z-index: 2;
    opacity: 0;
    transition: opacity .2s linear;
    cursor: pointer;
}

.tickets .ticketType:hover .ticketTypeOverlay, .tickets .ticketType.active .ticketTypeOverlay {
    opacity: 1;
}

.tickets .ticketType .price {
    float: left;
    width: 80px;
    color: #27DA92;
    background: rgba(0, 0, 0, .4);
    border-radius: 30px;
    margin-right: 16px;
    text-align: center;
}

.cart {
    margin: 28px auto;
}

.cart .cartItem {
    width: 100%;
    max-width: 600px;
    height: 48px;
    border-radius: 30px;
    background: rgba(0, 0, 0, .25);
    margin-bottom: 24px;
    line-height: 48px;
    color: #FFF;
    overflow: hidden;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.cart .quantity {
    float: left;
    width: 100px;
    background: rgba(0, 0, 0, .4);
    border-radius: 30px;
    margin-right: 16px;
    text-align: center;
    color: #FFF;
    font-size: 28px;
    position: relative;
    font-weight: 600;
}

.cart .quantity > div {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px;
    cursor: pointer;
}

.cart .addOne {
    right: 0;
}

.cart .removeOne {
    left: 0;
    margin-top: -2px;
}

.cart .ticketOwner {
    width: 38px;
    height: 38px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    float: right;
    margin: 5px;
    position: relative;
    overflow: hidden;
}

.cart .ticketOwner img {
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.cart .button {
    width: 100%;
    max-width: 600px;
    height: 60px;
    border-radius: 30px;
    overflow: hidden;
    font-size: 20px;
    margin: 0 auto 24px auto;
    font-weight: normal;
    text-transform: uppercase;
    line-height: 60px;
    cursor: pointer;
    display: block;
}

.cart .addTicket {

    background: rgba(255, 255, 255, .15);
    color: #FFF;
    border: 1px solid #FFF;
}

.cart .totalPrice, .checkout .totalPrice {
    margin: 24px 0 48px 0;
    font-size: 32px;
    line-height: 26px;
    color: #27DA92;
}

.totalPrice p {
    font-size: 12px;
    color: #FFF;
}

.cart .toCheckout {
    background: #27DA92;
    color: #FFF;
    max-width: 200px;
}

.checkout h5 {
    float: none;
}

.checkout .totalPrice {
    height: 50px;
}

.checkout .card-input {
    margin: 0;
    padding: 16px;
}

.checkout .btn.btn-primary {
    margin: 24px 0;
}

.checkout .payment {
    max-width: 360px;
    width: 100%;
    margin: 12px auto;
}

.checkout .paymentCard {
    height: 48px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.2);
    line-height: 48px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.checkout .payment.active .paymentCard {
    background: rgba(0, 0, 0, 0.35);
}

.checkout .paymentCard p {
    margin: 0;
    text-align: left;
    padding-left: 24px;
    font-size: 18px;
}

.checkout .paymentCard .cardBrand {
    position: absolute;
    right: 0;
    width: 64px;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%;
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;

}

.checkout .payment.active .paymentCard .cardBrand {
    background-color: rgba(255, 255, 255, 0.7);
}

.checkout .paymentData {
    margin-top: 4px;
}

.checkout .paymentData p {
    width: 50%;
    position: relative;
    left: 0;
    margin: 0;
    text-align: left;
    padding-left: 24px;
}

#card-element {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 29px;
    height: 58px;
    padding: 20px 10px;
    max-width: 360px;
    width: 100%;
    margin: 20px auto;
}

.settings #card-element {
    border: 1px solid #000000;

}

#subscribe {
    display: block;
    margin: 24px auto;
    text-transform: uppercase;
}

.settings h5 {
    margin: 24px 0 0 0;
    float: none;
}

.settings #setup-form {
    padding: 0 36px;
}

.settings .safe {
    margin: 24px 0 36px 0;
}

#setup-form {
    position: relative;
}

#card-button i {
    background-image: url("../images/add.svg");
    width: 24px;
    height: 24px;
    float: left;
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-top: 13px;
    margin-right: 8px;
}

#card-button {
    color: #FFF;
    height: 48px;
    background-color: #27DA92;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 24px;
    border: none;
    padding: 0 24px;
    line-height: 48px;
}

.card {
    margin: 20px auto;
    width: 300px;
    height: 188px;
    border-radius: 16px;
    position: relative;
    background: #E3E3E3;
}

.card .cardBrand {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 45px;
    height: 35px;
    background-size: 100%;
    background-repeat: no-repeat;
}

.card .cardChip {
    background-image: url("../images/card-chip.svg");
    background-size: 100%;
    background-repeat: no-repeat;
    width: 40px;
    height: 30px;
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.cardBrand.visa {
    background-image: url("../images/visa.png");
}

.cardBrand.mastercard {
    background-image: url("../images/mastercard.png");
}

.card .cardNumber {
    position: absolute;
    left: 30px;
    top: 60%;
    font-size: 18px;
    text-align: left;
}

.card .cardExpires {
    position: absolute;
    left: 60%;
    top: 75%;
    height: 30px;

}

.card .cardExpires small {
    font-size: 10px;
    margin-right: 10px;
}

.card .removeCard {
    background-image: url("../images/remove.svg");
    width: 48px;
    height: 48px;
    background-color: #DA2763;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    border: none;
    position: absolute;
    right: -15px;
    bottom: -15px;
    cursor: pointer;
}
.rules{
    text-align: justify;
    padding: 0 24px;
    margin-bottom: 24px;
    overflow: hidden;
}
.rules li{
    margin-bottom: 8px;
}
.rulesTop img{
    height: 50px;
}
.rulesTop table{
    width: 100%;
    margin-top: 24px;
}
.history-info > div{
    background-color: rgba(0,0,0,.15);
    line-height: 44px;
    height: 44px;
    border-radius: 22px;
    text-align: left;
    font-size: 14px;
    font-weight: 400;
}
.history-info > div:first-child{
    margin-top: 8px;
    margin-bottom: 16px;
}
.history-info > div i{
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 16px;
    height: 20px;
    float: left;
    position: relative;
    top: 13px;
    margin: 0 16px;
}
.history-info > div i.credit-card{
    background-image: url("../images/credit-card.svg");
}
.history-info > div i.ticket{
    background-image: url("../images/ticket.svg");
}
.history table tr td, .history table tr th{
    padding: 8px 4px;
    text-align: center;
}
@media only screen and (max-width: 600px) {

    .container {
        padding: 0;
    }

    #profile-image {
        width: 90%;
    }

    nav a {
        width: 48px;
        height: 48px;
        border-radius: 24px;
    }

    nav a.active {
        top: -50px;
        position: relative;
        height: 98px;
        background: linear-gradient(#308398 0%, #19416f 100%);
    }

    nav a.active svg {
        position: relative;
        margin-top: 50px;
    }

    #video{
        width: 300px;
        height: 400px;
    }
    #preview {
        width: 300px;
        height: 400px;
        left: 50%
    }
}

#sendResetLink .spinner{
    opacity: 0;
}
#sendResetLink.disabled .spinner{
    opacity: 1;
}
.lds-ring {
    display: inline-block;
    position: absolute;
    width: 40px;
    height: 40px;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 32px;
    height: 32px;
    margin: 4px;
    border: 4px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}
@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
