@font-face {
    font-family: "Forum";
    src: url('../fonts/Forum-Regular.ttf');
}

@font-face {
    font-family: "Source Sans Pro";
    src: url('../fonts/SourceSansPro-Regular.ttf');
}

@font-face {
    font-family: "Source Sans Pro";
    src: url('../fonts/SourceSansPro-SemiBold.ttf');
    font-weight: bold;
}

@font-face {
    font-family: "Alex";
    src: url('../fonts/AlexBrush-Regular.ttf');
}

@font-face {
    font-family: "Now";
    src: url('../fonts/Now-Bold.ttf');
    font-weight: bold;
}

@font-face {
    font-family: "Now";
    src: url('../fonts/Now-Medium.ttf');
    font-weight: medium;
}

@font-face {
    font-family: "Now";
    src: url('../fonts/Now-Light.ttf');
    font-weight: 600;
}

* {
    margin: 0;
    padding: 0;
}

.spinner {
    width: 40px;
    height: 40px;
    top: 45vh;
    position: relative;
}

.double-bounce1,
.double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #333;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
    0%,
    100% {
        -webkit-transform: scale(0.0)
    }
    50% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bounce {
    0%,
    100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }
    50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}

.phone-button {
    font-size: 28px;
    border: solid 3px #d0b3a7;
    padding: 5px 15px
}

.pin {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 22px;
    border-radius: 3px;
    border: none;
    background: #ccc;
}

#loader {
    height: 110vh;
    width: 100vw;
    background: white;
    z-index: 99999999;
    opacity: 1;
    position: fixed;
}

a,
a:hover,
a:active {
    text-decoration: none !important;
}

#error {
    border: solid 1px red;
    padding: 5px;
    border-radius: 5px;
    color: red;
    font-size: 13px;
    text-align: center;
    display: none;
}

body {
    /* background: #fff; */
    background-color: #222;
    /* color: #e1c654; */
    color: #333;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.box-outer {
    /* background: url('../img/back.png'); */
    background: white;
    color: black;
}

.teller-slide {
    background: #333;
    color: white !important;
    text-align: center;
    display: none;
    font-size: 20px;
    padding: 15px 10px;
    line-height: 2.5;
}

.sub-title-container {
    /* background: white url('../img/back5.png'); */
    /* background-color: white; */
    font-family: 'Forum', cursive;
    margin-top: -7px;
    padding: 8px;
    font-size: 13px;
    /* text-align: left; */
}

.bottom-title-container {
    position: relative;
    width: 100%;
    bottom: 8%;
}

.check-icon {
    float: right;
    display: none;
    color: green;
}

.outer {
    /* background: url('../img/back.png');
    background-repeat: no-repeat;
    background-size: auto; */
    /* background: #222; */
    /* background-color: #f7eef3; */
    display: table;
    top: 0;
    left: 0;
    width: 100%;
    height: 88vh;
    text-align: center;
    /* padding:20px 20px 20px 20px; */
    /* padding: 20px; */
}

.middle {
    /* background: url('../img/back.png'); */
    background-size: contain;
    display: table-cell;
    vertical-align: middle;
    position: relative;
    
}

.inner {
    /* height: 90vh !important; */
    max-width: 736px;
    color: #bba14f;
    font-family: 'Forum', cursive;
    position: relative;
}

.title-container {
    text-align: center;
    padding: 3%;
}

.body-container {
    font-size: 14px;
    padding: 12px;
    padding-bottom: 70px;
    font-family: 'Forum', cursive;
    letter-spacing: 1.2px;
}

.body1 {
    font-size: 15px;
    font-family: 'Forum', cursive;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.top-div {
    text-align: center;
    /* background: #647c94 url('../img/back5.png'); */
    background-size: contain;
    color: black;
    max-width: 736px;
    /* position: relative; */
}

.top-div-start {
    text-align: center;
    /* background: white url('../img/back5.png'); */
    /* background-size: contain; */
    color: black;
    max-width: 736px;
    /* position: relative; */
}

.event-item {
    font-size: 17px;
    font-family: 'Forum', cursive;
    text-transform: uppercase;
    font-weight: bold;
}

.animated {
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

@-webkit-keyframes bounce {
    0%,
    100% {
        -webkit-transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-5px);
    }
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.bounce {
    opacity: 0.7;
    -webkit-animation-name: bounce;
    animation-name: bounce;
}

.laptop-width {
    padding-left: 30px;
    padding-right: 30px;
}

@media (min-width: 768px) {
    .botter {
        padding: 20px;
    }
    .laptop-width {
        padding: 0 130px !important;
    }
    .top-div {
        background: none;
    }
}

.botter {
    margin: 0 !important;
    font-size: 15px;
    color: white;
    text-align: center;
    display: inline-block;
    width: 32.5%;
    padding: 15px;
}

.botter:active,
.botter:hover {
    color: white;
}

.botter-holder {
    z-index: 9999999;
    -webkit-box-shadow: -1px 6px 26px 8px rgba(0, 0, 0, 0.52);
    -moz-box-shadow: -1px 6px 26px 8px rgba(0, 0, 0, 0.52);
    box-shadow: -1px 6px 26px 8px rgba(0, 0, 0, 0.52);
    background-image:url('../img/op_mam.jpg');
    width: 100%;
    max-width: 480px;
    position: sticky;
    bottom: 0;
    padding: 0;
}

.botter-rsvp {
    border-radius: 50px;
    padding: 10px 0;
    background: #fff;
    color: rgb(0, 0, 0);
    -webkit-box-shadow: -1px 6px 26px 8px rgba(0, 0, 0, 0.42);
    -moz-box-shadow: -1px 6px 26px 8px rgba(0, 0, 0, 0.42);
    box-shadow: -1px 6px 26px 8px rgba(0, 0, 0, 0.42);
}

.botter-hotel {
    border-radius: 50px;
    padding: 10px 0;
    background: #455c7d;
    color: rgb(0, 0, 0);
    -webkit-box-shadow: -1px 6px 26px 8px rgba(0, 0, 0, 0.42);
    -moz-box-shadow: -1px 6px 26px 8px rgba(0, 0, 0, 0.42);
    box-shadow: -1px 6px 26px 8px rgba(0, 0, 0, 0.42);
}

.botter-rsvp:active,
.botter-rsvp:hover {
    color: black;
}

.heartbeat {
    -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
    animation: heartbeat 1.5s ease-in-out infinite both
}

@-webkit-keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    10% {
        -webkit-transform: scale(.91);
        transform: scale(.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    17% {
        -webkit-transform: scale(.98);
        transform: scale(.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    33% {
        -webkit-transform: scale(.87);
        transform: scale(.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
}

@keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    10% {
        -webkit-transform: scale(.91);
        transform: scale(.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    17% {
        -webkit-transform: scale(.98);
        transform: scale(.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    33% {
        -webkit-transform: scale(.87);
        transform: scale(.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
}

.option {
    width: 100%;
    padding: .5rem 1.25rem;
    padding-left: 12px;
    font-size: 15px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* background-color: #ffffff;
    background-image: none; */
    border: 1px solid #cccccc;
    margin-bottom: 30px;
    margin-top: 7px
}

select::-ms-expand {
    display: none;
}

#homee {
    background: white url('../img/back5.png');
    background-size: contain;
    background-repeat: repeat-y;
    min-height: 100%;
    width: 100%;
}

#clockdiv {
    font-weight:;
    text-align: center;
    font-size: 20px;
    display: flex;
    justify-content: space-around;
    padding-top: 15px;
    }

#clockdiv>div {
    background-color: #efbc6b;
    color: black;
    width: 80px;
    padding: 5px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
}

#clockdiv div>span {
    padding: 15px;
    border-radius: 3px;
}

.smalltext {
    padding-top: 5px;
    font-size: 8px;
}