/* GENERAL RESETS */
* {
    margin: 0;
    padding: 0;
}
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}
a {
    color: #666;
    text-decoration: none;
}
a:hover {
    color: #337ab7;
}

/* BODY */
body {
    position: relative;
    color: #666;
    font: 16px/26px "Raleway", sans-serif;
    background: -moz-linear-gradient(270deg, rgba(146,185,221,1) 0%, rgba(29,120,201,1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(29,120,201,1)), color-stop(100%, rgba(146,185,221,1)));
    background: -webkit-linear-gradient(270deg, rgba(146,185,221,1) 0%, rgba(29,120,201,1) 100%);
    background: linear-gradient(180deg, rgba(146,185,221,1) 0%, rgba(29,120,201,1) 100%);
    text-align: center;
    height: 100%;
    overflow:hidden;
}

/* BUTTON */
a.button {
    position: absolute;
    left: 20px;
    top: 20px;
    height: auto;
    padding: .8rem 1.0rem;
    font-size: .8rem;
    line-height: normal;
    text-transform: uppercase;
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 700;
    letter-spacing: 0;
    border-radius: 0;
    border: 1px solid #2D515C;
    text-decoration: none;
    color: #fff;
    background-color: transparent;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
a.button:hover {
    border-color: #2D515C;
    color: #fff;
    padding: 1.0rem 3.2rem;
}
@media only screen and (min-width: 22em) {
    a.button {
        padding: 1.0rem 2.8rem;
        font-size: 1.0rem;
    }
}

/* LOGIN */
.login {
    margin: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
}

/* WRAP */
.wrap {
    position: static;
    margin: auto;
    width: 100%;
    height: auto;
    overflow: hidden;
}
.wrap:after {
  content: "";
  display: table;
  clear: both;
}

/* LOGO */
.logo {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background: #4FC1B7;
}
.logo img {
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 380px;
    width: 30px;
}

/* CONTENT (WRAPPER) */
.content {
    position: relative;
    z-index: 0;
    float: none;
    margin: 0 auto;
    padding-top: 40px;
    width: 100%;
    height: 100vh;
    overflow: auto;
    background: -moz-linear-gradient(48deg, rgba(191,191,191,1) 0%, rgba(255,255,255,1) 100%);
    background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, rgba(255,255,255,1)), color-stop(100%, rgba(191,191,191,1)));
    background: -webkit-linear-gradient(48deg, rgba(191,191,191,1) 0%, rgba(255,255,255,1) 100%);
    background: linear-gradient(42deg, rgba(191,191,191,1) 0%, rgba(255,255,255,1) 100%);
    -webkit-box-shadow: -4px 10px 14px 2px rgba(0,0,0,0.75);
    -moz-box-shadow: -4px 10px 14px 2px rgba(0,0,0,0.75);
    box-shadow: -4px 10px 14px 2px rgba(0,0,0,0.75);
    border-radius: 0;
    border-top: 1px solid #4FC1B7;
}

.form-wrap form .button:hover {
    background-color: #4FDA8C;
}
/* USER FORM*/
.user {
    position: fixed;
    z-index: 1;
    float: none;
    margin: 0 auto;
    width: 100%;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    overflow: hidden;
}


.verify-user {
    position: fixed;
    z-index: 1;
    float: none;
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
    background: -moz-linear-gradient(48deg, rgba(191,191,191,1) 0%, rgba(255,255,255,1) 100%);
    background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, rgba(255,255,255,1)), color-stop(100%, rgba(191,191,191,1)));
    background: -webkit-linear-gradient(48deg, rgba(191,191,191,1) 0%, rgba(255,255,255,1) 100%);
    background: linear-gradient(42deg, rgba(191,191,191,1) 0%, rgba(255,255,255,1) 100%);
    -webkit-box-shadow: -4px 10px 14px 2px rgba(0,0,0,0.75);
    -moz-box-shadow: -4px 10px 14px 2px rgba(0,0,0,0.75);
    box-shadow: -4px 10px 14px 2px rgba(0,0,0,0.75);
    border-radius: 0;
    border-top: 1px solid #4FC1B7;
}

.footer {
    position: absolute;
    width: 100%;
    bottom: 0;
    color: #fff;
}

/* TOGGLE */
#toggle-wrap {
    position: absolute;
    z-index: 4;
    top: 40px;
    right: 17px;
    width: 80px;
    height: 1px;
}

/* FORM ELEMENTS */
input {
    font: 16px/26px "Raleway", sans-serif;
}
.form-wrap {
    width: 100%;
    margin: 2em auto 0;
}
.form-wrap a {
    color: #000;
    padding-bottom: 4px;
    border-bottom: 1px solid #568cbc;
}
.form-wrap a:hover {
    color: #fff;
}
.form-wrap .tabs {
    overflow: hidden;
}
.form-wrap .tabs * {
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
.form-wrap .tabs h3 {
    float: left;
    width: 100%;
}
.form-wrap .tabs h3 a {
    padding: 0.5em 0;
    text-align: center;
    font-weight: 400;
    display: block;
    color: #999;
    border: 0;
 }
.form-wrap .tabs h3 a.active {
    color: #ccc;
}
.form-wrap .tabs h3 a.active span {
    padding-bottom: 4px;
    border-bottom: 1px solid #5FD1C1;
}
.form-wrap .tabs-content {
    padding: 1.5em 3em;
    text-align: left;
    width: auto;
}
.help-action {
    padding: 1.5em 0 0;
    font-size: .93em;
}
.form-wrap form .input {
    margin: 0 0 .8em 0;
    padding: .8em 2em 0px 0;
    width: 100%;
    display: inline-block;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #5A6374;
    outline: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    color: inherit;
    font-family: inherit;
    color: #000;
}
.form-wrap form .button {
    margin: 1em 0;
    padding: .2em 5em;
    width: auto;
    display: block;
    background-color: #28A55F;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 1.2em;
    border-radius: 5px;
    background: -moz-linear-gradient(270deg, rgba(29,120,201,1) 0%, rgba(86,140,188,1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(86,140,188,1)), color-stop(100%, rgba(29,120,201,1)));
    background: -webkit-linear-gradient(270deg, rgba(29,120,201,1) 0%, rgba(86,140,188,1) 100%);
    background: linear-gradient(180deg, rgba(29,120,201,1) 0%, rgba(86,140,188,1) 100%);
    -webkit-box-shadow: 0px 0px 37px -9px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 37px -9px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 37px -9px rgba(0,0,0,0.75);
}
.form-wrap form .button:hover {
    background-color: #4FDA8C;
}
.form-wrap form .checkbox {
    margin: 1em 0;
    padding: 20px;
    visibility: hidden;
    text-align: left;
}
.form-wrap form .checkbox:checked + label:after {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
}
.form-wrap form label[for] {
    position: relative;
    padding-left: 20px;
    cursor: pointer;
}
.form-wrap form label[for]:before {
    position: absolute;
    width: 17px;
    height: 17px;
    top: 0px;
    left: -14px;
    content: '';
    border: 1px solid #5A6374;
}
.form-wrap form label[for]:after {
    position: absolute;
    top: 1px;
    left: -10px;
    width: 15px;
    height: 8px;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    content: '';
    background-color: transparent;
    border: solid #67DAC6;
    border-width: 0 0 3px 3px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.form-wrap .help-text {
    margin-top: .6em;
}
.form-wrap .help-text p {
    text-align: left;
    font-size: 14px;
}
.fa {
    display: none;
}
.help-block {
    margin-top: -15px;
    margin-bottom: 0px;
    color: red;
}
.cookie-bar {
    background-color: #000000;
}
.cookie-credit {
    color: #ffffff;
    margin-top: 10px;
    margin-bottom: 10px;
}
.cookie-btn {
    color: #ffffff;
    background-color: #dc3545;
    border-color: #dc3545;
    border-top-color: rgb(220, 53, 69);
    border-right-color: rgb(220, 53, 69);
    border-bottom-color: rgb(220, 53, 69);
    border-left-color: rgb(220, 53, 69);
    display: inline-block;
    vertical-align: middle;
    margin-left: 15px;
    float: none;
}
.modal p {
    margin: 0;
}
.modal-btn {
    color: #ffffff;
    background-color: #337ab7;
    border-color: #337ab7;
}
.modal-dialog {
    overflow-y: initial !important
}
.modal-body {
    height: 400px;
    overflow-y: auto;
    margin: 0 5px;
}
.modal-body p {
   margin-bottom: 30px;
}
.modal-body h4 {
   margin-bottom: 5px;
}

table, tr, td {
   border: 1px solid #e4e4e4;
   padding: 15px;
}


/* MEDIUM VIEWPORT */
@media only screen and (min-width: 40em) {
    /* GLOBAL TRANSITION */
    * {
      /*transition: .25s ease-in-out;*/
    }
    /* WRAP */
    .wrap {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 600px;
        height: 500px;
        margin: auto;
        -webkit-box-shadow: 10px 20px 15px 0px rgba(0,0,0,0.35);
        -moz-box-shadow: 10px 20px 15px 0px rgba(0,0,0,0.35);
        box-shadow: 10px 20px 15px 0px rgba(0,0,0,0.35);
        border-radius: 10px;
    }
    /* LOGO */
    .logo {
        top: 10px;
        left: 10px;
        width: 40px;
        height: 40px;
        background: none;
    }
    .logo img {
        width: 100%;
    }
    /* TOGGLE WRAP */
    #toggle-wrap {
        top: 60px;
        right: calc(50% + 17px);
        height: 80px;
        overflow: hidden;
    }
    #toggle-wrap.closed {
        width: 50%;
    }
    /* USER FORM */
    .user, .user.full {
        position: relative;
        float: left;
        width: 50%;
        height: 500px;
        border-radius: 0px;
    }
    .verify-user {
        position: relative;
        float: left;
        width: 50%;
        height: 500px;
        border-radius: 0px;
    }
    /* CONTENT (WRAPPER) */
    .content {
        padding-top: 0;
        float: left;
        width: 50%;
        height: 500px;
        -webkit-box-shadow: -3px 0px 45px -6px rgba(56,75,99,0.61);
        -moz-box-shadow: -3px 0px 45px -6px rgba(56,75,99,0.61);
        box-shadow: -3px 0px 45px -6px rgba(56,75,99,0.61);
        border-radius: 0px;
        border: 0;
    }
    /* FORM ELEMENTS */
    .form-wrap {
        margin: 3em auto 0;
    }
    .form-wrap .tabs-content {
        padding: 1.5em 2.5em;
    }
    .tabs-content p {
        position: relative;
    }
    /* ARROW */
    .tabs-content .fa {
        position: absolute;
        top: 8px;
        left: -16px;
        display: block;
        font-size: .8em;
        color: #fff;
        opacity: .3;
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0);
        -webkit-transition: transform .3s .3s ease, opacity .6s .0s ease;
        -moz-transition: transform .3s .3s ease, opacity .6s .0s ease;
        -o-transition: transform .3s .3s ease, opacity .6s .0s ease;
        transition: transform .3s .3s ease, opacity .6s .0s ease;
    }
    .tabs-content .fa.active {
        -webkit-transform: translate(-3px, 0);
        -moz-transform: translate(-3px, 0);
        -o-transform: translate(-3px, 0);
        transform: translate(-3px, 0);
        opacity: .8;
    }
    .tabs-content .fa.inactive {
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: .3;
    }
}
/* LARGE VIEWPORT */
@media only screen and (min-width: 60em) {
    /* WRAP */
    .wrap {
        width: 900px;
        height: 550px;
    }
    /* CONTENT */
    .content, .content.full {
        height: 550px;
    }
    /* USER (FORM WRAPPER) */
    .user {
        height: 550px;
    }
    .verify-user {
        height: 550px
    }
    .form-wrap {
        margin: 4em auto 0;
    }
    .form-wrap .tabs-content {
        padding: 1.5em 4.7em;
    }
}


/* CSS */
.element {
  opacity: 0.0;
  transform: scale(0.95) translate3d(0,100%,0);
  transition: transform 400ms ease, opacity 400ms ease;
}
.element.active {
  opacity: 1.0;
  transform: scale(1.0) translate3d(0,0,0);
}
.element.inactive {
  opacity: 0.0;
  transform: scale(1) translate3d(0,0,0);
}
