/*
Theme Name: Aforevo Partners Un-boarding
Text Domain: aforevo
Version: 1.1
*/


body {
    background-color: #181818;
    overflow-x: hidden;
}

form label {
    font-size: 14px;
    opacity: .7;
    font-weight: 300;
}
form p{
    font-weight: 300;
    font-size: 14px;
}
.agreement p, .agreement ul li{
    font-weight: 300;
    font-size: 14px;
}
form fieldset {
    padding: 10px;
    border: 1px dotted #5a6268;
}
form fieldset h6 {
    color:  #fff;
}

.agreement article{
    border-bottom: 1px dotted #5a6268;
    margin-bottom: 18px;
}

.inactive {
    display: none;
}
.mst-header{
    width: 100%;
    min-height: 50px;
    position: relative;
    z-index: 100;
    background-color: #181818;
    /*background-color: #fff;*/
}

.mst-header:after{
    position: absolute;
    top: 100%;
    width: 100%;
    content: '';
    height: 1px;
    z-index: 1;
    background-color: rgba(51,51,51,0.95);
}

.nav-logo img{
    width: 100px;
}

.site-wrapper{

}

.top-section{
    position: relative;
    background-size: cover;
    color: #fff;
}

.top-section div {


}

.right-col:after{
    width: 100%;
    height: 100%;
    content: '';
    background: url(cover-path.svg) no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 2;
    position: absolute;
}

.right-col, .left-col {
    width: 100%;
    position: relative;
}

.left-col {
    padding: 10px;
    background-color: #181818;
}

.left-col p {
    font-weight: 300;
}

.hero-video {
    /*-webkit-clip-path: url(#svgPath);*/
    /*clip-path: url(#svgPath);*/
    /*position: relative;*/
    /*object-fit: cover;*/
    /*width: 800px;*/
    /*height: 600px;*/
}

video {
    position: fixed;
    top: 0;
    width: 100%;
    height: 400px;
    object-fit: cover;
    z-index: -100;
    background: url('//demosthenes.info/assets/images/polina.jpg') no-repeat;
    background-size: cover;
    transition: 1s opacity;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #ff2424;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(255,36,36,.25);
}

.form-control {
    border-radius: 0 !important;
}

.btn-primary {
    color: #fff;
    background-color: #fd0202;
    border-color: #fd0202;
}

.primary-text {
    color: #fd0202;
}

.btn-primary.focus, .btn-primary:focus {
    box-shadow: 0 0 0 .2rem rgba(255,36,36,.5);
}
.btn-primary:hover {
    color: #fff;
    background-color: #ff2424;
    border-color: #ff2424;
}

.right-col {
    height: 300px;
    overflow: hidden;
}

.pre-auth {
    display: none;
}

.post-auth {
    display: none;
}

#chart {
    width: 500px;
    height: 300px;
    margin-bottom: 1em;
}

#video-list {
    padding-left: 1em;
    list-style-type: none;
}
#video-list > li {
    cursor: pointer;
}
#video-list > li:hover {
    color: blue;
}

@-webkit-keyframes float {
    0% {
        box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
        -webkit-transform: translatey(0px);
        transform: translatey(0px);
    }
    50% {
        box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
        -webkit-transform: translatey(-20px);
        transform: translatey(-20px);
    }
    100% {
        box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
        -webkit-transform: translatey(0px);
        transform: translatey(0px);
    }
}

@keyframes float {
    0% {
        -webkit-transform: translatey(0px);
        transform: translatey(0px);
    }
    50% {
        -webkit-transform: translatey(-20px);
        transform: translatey(-20px);
    }
    100% {
        -webkit-transform: translatey(0px);
        transform: translatey(0px);
    }
}

.avatar {
    width: 180px;
    height: 120px;
    box-sizing: border-box;
    position: relative;
    z-index: 3;
    overflow: hidden;
    -webkit-animation: float 6s ease-in-out infinite;
    animation: float 6s ease-in-out infinite;
}
.avatar img {
    width: 100%;
    height: auto;
}
.form-wrapper{
    padding: 20px;
    margin-top: 15px;
    background-color: rgba(51,51,51,0.95);

}

.form-wrapper a, .form-wrapper a:hover {
    text-decoration: underline;
    color: #ff2424;
}
/*.mst-footer {*/
    /*width: 100%;*/
    /*min-height: 200px;*/
    /*background-color: #fd0202;*/
/*}*/

/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    .right-col, .left-col {
        width: 50%;
        float: left;
        position: relative;
        height: 100vh;
    }
    .top-section{
        margin-top: 0;
        min-height: 100vh;
    }
    .left-col {
        padding: 10px 80px;
    }
    .nav-logo img{
        width: 180px;
        margin-left: 80px;
    }
    video {
        position: fixed;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        z-index: -100;
        transform: translateX(-50%) translateY(-50%);
        background: url(video-cover.jpg) no-repeat;
        background-size: cover;
        transition: 1s opacity;
    }
}