html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

html {
    min-height: 100%;
    font-family: 'Roboto', sans-serif;
}

.title {
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 5px;
    color: #FF8F00;
    font-weight: 300;
    font-size: 4rem;
    letter-spacing: 1px;
    font-family: UNITED;
}

.description {
    text-align: center;
    color: #666;
    margin-bottom: 5px;
    font-size: 2rem;
}

.instruction {
    text-align: center;
    color: #000;
    margin-bottom: 5px;
    font-family: UNITED;
    font-size: 36px;
}




.modal-wrapv2 {
    max-width: 900px;
    margin: 50px auto;
    transition: transform 300ms ease-in-out;
}

.modal-headerv2 {
    height: 45px;
    background: #f7f7f7;
    border-bottom: 1px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .modal-headerv2 span {
        display: block;
        height: 12px;
        width: 12px;
        margin: 5px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.2);
    }

        .modal-headerv2 span.is-active {
            background: rgba(0, 0, 0, 0.4);
            background: #FF8F00;
        }

.modal-bodiesv2 {
    position: relative;
    perspective: 1000px;
}

.modal-bodyv2 {
    background: white;
    padding: 40px 100px;
    box-shadow: 0px 50px 30px -30px rgba(0, 0, 0, 0.3);
    margin-bottom: 50px;
    position: absolute;
    top: 0;
    display: none;
    box-sizing: border-box;
    width: 100%;
    transform-origin: top left;
}

    .modal-bodyv2.is-showing {
        display: block;
    }

.animate-out {
    animation: out 600ms ease-in-out forwards;
}

.animate-in {
    animation: in 500ms ease-in-out forwards;
    display: block;
}

.animate-up {
    transform: translateY(-500px) rotate(30deg);
}

@keyframes out {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    60% {
        transform: rotate(60deg);
    }

    100% {
        transform: translateY(800px) rotate(10deg);
    }
}

@keyframes in {
    0% {
        opacity: 0;
        transform: rotateX(-90deg);
    }

    100% {
        opacity: 1;
        transform: rotateX(0deg);
    }
}

@font-face {
    font-family: 'UNITED';
    src: url('/fonts/United Italic SemiCond Black.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}


loader-body {
    padding: 1em;
    background: #2B3134;
    color: #777;
    text-align: center;
    font-family: "Gill sans", sans-serif;
    width: 80%;
    margin: 0 auto;
}

loader-h1 {
    margin: 1em 0;
    border-bottom: 1px dashed;
    padding-bottom: 1em;
    font-weight: lighter;
}

loader-p {
    font-style: italic;
}

.loader {
    margin: 0 0 2em;
    height: 100px;
    width: 100%;
    text-align: center;
    padding: 1em;
    margin: 0 auto 1em;
    display: inline-block;
    vertical-align: top;
}

/*
  Set the color of the icon
*/
svg path,
svg rect {
    fill: #FF6700;
}



.animation-ctn {
    text-align: center;
    margin-top: 5em;
}

@-webkit-keyframes checkmark {
    0% {
        stroke-dashoffset: 100px
    }

    100% {
        stroke-dashoffset: 200px
    }
}

@-ms-keyframes checkmark {
    0% {
        stroke-dashoffset: 100px
    }

    100% {
        stroke-dashoffset: 200px
    }
}

@keyframes checkmark {
    0% {
        stroke-dashoffset: 100px
    }

    100% {
        stroke-dashoffset: 0px
    }
}

@-webkit-keyframes checkmark-circle {
    0% {
        stroke-dashoffset: 480px
    }

    100% {
        stroke-dashoffset: 960px;
    }
}

@-ms-keyframes checkmark-circle {
    0% {
        stroke-dashoffset: 240px
    }

    100% {
        stroke-dashoffset: 480px
    }
}

@keyframes checkmark-circle {
    0% {
        stroke-dashoffset: 480px
    }

    100% {
        stroke-dashoffset: 960px
    }
}

@keyframes colored-circle {
    0% {
        opacity: 0
    }

    100% {
        opacity: 100
    }
}

/* other styles */
/* .svg svg {
    display: none
}
 */
.inlinesvg .svg svg {
    display: inline
}

/* .svg img {
    display: none
} */

.icon--order-success svg polyline {
    -webkit-animation: checkmark 0.25s ease-in-out 0.7s backwards;
    animation: checkmark 0.25s ease-in-out 0.7s backwards
}

.icon--order-success svg circle {
    -webkit-animation: checkmark-circle 0.6s ease-in-out backwards;
    animation: checkmark-circle 0.6s ease-in-out backwards;
}

    .icon--order-success svg circle#colored {
        -webkit-animation: colored-circle 0.6s ease-in-out 0.7s backwards;
        animation: colored-circle 0.6s ease-in-out 0.7s backwards;
    }

a:link{
    color:inherit;
    font-size: 13px
}

.form-link:link{
    color: black;
    text-decoration:none;
}
.form-link:link:hover {
    color: #F36C12;
    text-decoration: underline;
}
    .form-link:visited{
        color: black;

    }
        .form-link:visited:hover {
            color: #F36C12;
            text-decoration: underline;
        }

footer{
    height:100px;
}

