* {
    line-height: 1em;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #363636;
}

#body-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.container {
    -webkit-transition: width 250ms linear;
    -moz-transition: width 250ms linear;
    -o-transition: width 250ms linear;
    -ms-transition: width 250ms linear;
    transition: width 250ms linear;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1em;
    margin: 0;
}

h2.bordered {
    display: inline-block;
    line-height: 1em !important;
    padding: 5px 0 2px 0;
    margin: 0 auto 20px auto;
    border-top: 3px solid #FFFFFF;
    border-bottom: 3px solid #FFFFFF;
}

h2.errors {
    color: #A82104 !important;
    margin-bottom: 40px !important;
}

p {
    font-size: 14px;
    line-height: 1.8em;
}

a {
    text-decoration: none;
    color: #23427D;
}

a:hover {
    text-decoration: underline;
    color: #23427D;
}

a img {
    border: none;
}

a, button {
    outline: none;
}

ul, ol {
    margin: 0;
}

input[type='text'],
input[type='password'],
input[type='email'],
input[type='number'],
textarea {
    font-family: 'Lato', Helvetica, Arial, sans-serif;
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    color: #555555;
    margin-bottom: 15px;
    background: #DDDDDD;
    border: none;
    border-radius: 4px;
    outline: none !important;
}

input[type='text'],
input[type='password'],
input[type='email'],
input[type='number'] {
    height: 45px;
    padding: 0 10px;
}

textarea {
    resize: none;
    padding: 10px;
}

.input-wrapper .error-text .errorlist {
    list-style: none;
    margin: 0 !important
}

.input-wrapper .error-text .errorlist li {
    font-size: 13px !important;
    font-weight: 700;
    line-height: 1.4em;
    color: #A82104 !important;
    margin: 0;
    padding: 0;
}


/*========== COMMON CLASSES ==========*/
.alert {
    background-image: none !important;
}

.alert p {
    margin-bottom: 0 !important;
}

.wrapper {
    float: left;
    clear: both;
    width: 100%;
}

.container {
    max-width: 970px !important;
}

.left {
    float: left;
}

.right {
    float: right;
}

.clear-both {
    clear: both;
}

.text-align-right {
    text-align: right;
}

.green,
.input-wrapper.valid label {
    color: #55BC77 !important;
}

.input-wrapper.valid input,
.input-wrapper.valid textarea {
    border-bottom: 2px solid #55BC77;
}

a.block {
    display: block;
}

.no-list {
    list-style: none;
}

.bullet-list {
    margin-left: 30px;
}

.input-wrapper {
    margin-bottom: 20px;
}

.input-wrapper label {
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    color: #23427D;
    margin-bottom: 10px;
}

.red,
.input-wrapper.errors label {
    color: #A82104 !important;
}

.input-wrapper.errors input,
.input-wrapper.errors textarea {
    border-bottom: 2px solid #A82104;
}

.btn {
    display: block;
    font-size: 14px;
    font-weight: 700;
    line-height: 1em;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 15px 20px;
    background: #55BC77;
    border: none;
    border-radius: 4px;
    -webkit-transition: opacity 250ms linear;
    -moz-transition: opacity 250ms linear;
    -o-transition: opacity 250ms linear;
    -ms-transition: opacity 250ms linear;
    transition: opacity 250ms linear;
}

.btn:hover {
    color: #FFFFFF;
    background: #263645;
}

.btn.btn-white {
    color: #222222 !important;
    padding: 14px 19px;
    background: #FFFFFF !important;
    border: 1px solid #959595;
    -webkit-transition: background 250ms linear;
    -moz-transition: background 250ms linear;
    -o-transition: background 250ms linear;
    -ms-transition: background 250ms linear;
    transition: background 250ms linear;
}

.btn.btn-white:hover {
    color: #FFFFFF !important;
    background: #222222 !important;
}

.btn.btn-large {
    padding: 20px 50px;
}

a.btn {
    color: #FFFFFF;
    text-decoration: none !important;
}
/*========== END COMMON CLASSES ==========*/


/*========== HEADER ==========*/
#header-wrapper {
    margin: 0;
    padding: 15px 0;
    background-color: #FFFFFF;
    border-radius: 0;
    z-index: 2000;
}

#header {
    position: relative;
    z-index: 2;
}

#header .logo {
    float: left;
}

#header #desktop-nav-wrapper {
    float: right;
}

#header .pre-nav-actions {
    float: right;
    margin-top: 5px;
}

#header .login-link {
    float: right;
    font-size: 11px;
    text-transform: uppercase;
    color: #969696;
    margin-top: 2px;
    margin-bottom: 20px;
}

#header .seperator {
    float: right;
    font-size: 13px;
    color: #969696;
    margin: 0 10px;
}

#header #mobile-cart .seperator {
    margin: 0 13px;
}

/*=====
RESPONSIVENESS
=====*/
@media (max-width: 992px) {
    #header-wrapper {
        position: fixed;
        min-height: 72px;
        padding: 15px 0;
    }

    #header-wrapper .logo img {
        height: 40px;
    }
}

@media (max-width: 768px) {
    .navbar-brand {
        margin-top: 5px;
    }

    .navbar-brand img {
        width: 225px;
    }
}
/*=====
END RESPONSIVENESS
=====*/
/*========== END HEADER ==========*/


/*========== CONTENT ==========*/
#content-wrapper {
    padding: 0;
}

/*=====
RESPONSIVENESS
=====*/
@media (max-width: 992px) {
    #content-wrapper {
        padding-top: 72px;
    }
}
/*=====
END RESPONSIVENESS
=====*/
/*========== END CONTENT ==========*/


/*========== FOOTER ==========*/
#footer-wrapper {
    color: #FFFFFF;
    padding: 45px 0 20px 0;
}

.active-user-body #footer-wrapper {
    padding-bottom: 60px;
}

#footer-wrapper .container {
    min-height: 300px;
}

#footer-wrapper .footer-content {
    margin-bottom: 40px;
    opacity: 0.7;
}

#footer-wrapper h2 {
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

#footer-wrapper p {
    display: block;
    font-family: 'Lato', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6em;
    margin: 0;
}

#footer-wrapper ul {
    list-style: none;
    margin-bottom: 20px;
}

#footer-wrapper ul li {
    font-family: 'Lato', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.2em;
    margin-bottom: 10px;
}

#footer-wrapper .social-icons {
    margin: 40px 0 0 0;
}

#footer-wrapper .social-icons img {
    margin-right: 10px;
    margin-bottom: 10px;
}

#footer-wrapper .copyright-wrapper {
    font-size: 11px;
    text-transform: uppercase;
    color: #FFFFFF;
    opacity: 0.3;
}

#footer-wrapper .copyright-wrapper a {
    display: inline-block;
    color: #FFFFFF;
}

#footer-wrapper .copyright-wrapper a:hover {
    text-decoration: underline;
    color: #FFFFFF;
}

/*==
RESPONSIVENESS
==*/
@media (max-width: 767px) {
    #footer-wrapper .about-col-copy,
    #footer-wrapper .contact-col-copy {
        margin-bottom: 30px;
    }

    #footer-wrapper h2 {
        font-size: 16px;
    }

    #footer-wrapper .copyright-wrapper {
        font-size: 10px;
    }
}
/*==
END RESPONSIVENESS
==*/
/*========== END FOOTER ==========*/


/*---------- DIALOG BOX ----------*/
#overlay {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: black;
    opacity: .5;
    z-index: 10000;
}

.dialog-box {
    display: none;
    position: fixed;
    z-index: 20000;
    top: 50%;
    left: 50%;
    width: 820px;
    max-width: 100%;
    min-height: 670px;
    max-height: 100%;
    padding: 100px 50px 50px 50px;
    background-color: #E5E5E5;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    overflow: auto;
}

.dialog-box .close-button {
    position: absolute;
    top: 40px;
    left: 50px;
    cursor: pointer;
}

.dialog-box .dialog-content {
    height: 100%;
}

.dialog-box.terms-pop-up-wrapper .dialog-content {
    height: 100%;
}

.dialog-box .dialog-content h4 {
    font-size: 20px !important;
    margin-top: 10px;
    margin-bottom: 20px !important;
}
/*---------- END DIALOG BOX ----------*/
