html, body{
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: roboto;
}
.demo-video *{
    box-sizing: border-box;
    outline: none;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none;   /* Chrome/Safari/Opera */
    -khtml-user-select: none;    /* Konqueror */
    -moz-user-select: none;      /* Firefox */
    -ms-user-select: none;       /* Internet Explorer/Edge */
    user-select: none;           /* Non-prefixed version, currently
                                    not supported by any browser */
  }
.demo-video input {
    -webkit-user-select: text !important;   /* Chrome/Safari/Opera */
}
.demo-video{
    display: flex;
    width: 100%;
    height: 100vh;
}
.demo-video-form{
    display: flex;
    flex-direction: column;
    background-color: #4285F4;
    width: 100%;
    max-width: 525px;
    min-height: 100vh;
    padding: 20px 80px;
    justify-content: center;
    z-index: 99;
    transition-duration: 0.3s;
}
@media (max-width: 768px){
    .demo-video-form{
        position: absolute;
        top: 0;
        left: 0;
        max-width: unset;
        min-height: unset;
        padding: 20px 35px;
    }
}
.demo-video-form.hiden{
    overflow-y: hidden;
}
.demo-video-form:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -40px;
    width: 40px;
    background: #4285F4;
}
@keyframes FreeDemoVideo_bounceRight{
    0%{transform:translateZ(0)}50%{transform:translate3d(40px,0,0)}65%{transform:translateZ(0)}79%{transform:translate3d(10px,0,0)}86%{transform:translateZ(0)}93%{transform:translate3d(4px,0,0)}to{transform:translateZ(0)}
}
.demo-video-form-animation{
    animation:FreeDemoVideo_bounceRight .6s ease-out
}
/*
.demo-video-logo{
    transition-duration: 0.3s;
}
.demo-video-logo:hover{
    opacity: 0.7;
}
*/
.demo-video-form-title{
    font-family: Cabin;
    font-style: normal;
    font-weight: bold;
    font-size: 40px;
    line-height: 100%;
    text-transform: capitalize;
    color: #FFFFFF;
    margin-top: 42px;
}
@media (max-width: 768px){
    .demo-video-form-title{
        font-size: 34px;
        text-align: center;
    }
}
.demo-video-form-text{
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    color: #FFFFFF;
    margin-top: 14px;
    margin-bottom: 24px;
}
@media (max-width: 768px){
    .demo-video-form-text{
        font-size: 16px;
        text-align: center;
        max-width: 240px;
        margin-left: auto;
        margin-right: auto;
    }
}
input{
    display: flex;
    align-items: center;
    width: 100%;
    height: 50px;
    background-color: #FFFFFF;
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    color: #1F1F1F;
    border-radius: 5px;
    margin-bottom: 16px;
    padding: 0 16px;
    border: 2px solid transparent;
    -webkit-user-select: text;
}
input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #889090;
    opacity: 1; /* Firefox */
}
input.error {
    border: 2px solid red;;
}
input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #889090;
}
input::-ms-input-placeholder { /* Microsoft Edge */
    color: #889090;
}
input.error::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: red;
    opacity: 1; /* Firefox */
}
input.error:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: red;
}
input.error::-ms-input-placeholder { /* Microsoft Edge */
    color: red;
}
.demo-video-form-submit{
    display: flex;
    background: #1F1F1F;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    width: 200px;
    height: 60px;
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    text-align: center;
    color: #FFFFFF;
    border: none;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    cursor: pointer;
    transition-duration: 0.3s;
}
.demo-video-form-submit:disabled{
    background-color: #5e5e5e;
    cursor: progress;
}
.demo-video-form-submit:disabled:hover{
    background-color: #5e5e5e;
    cursor: progress;
}
.demo-video-form-submit:hover{
    background: #3f3f3f;
}
.demo-video-container{
    display: flex;
    position: relative;
    height: 100%;
    flex-grow: 1;
    background: #EFEFEF;
    padding: 80px;
    align-items: center;
    transition-duration: 0.3s;
}
.active.demo-video-container{
    padding: 250px;
} 
@media (max-width: 768px){
    .active.demo-video-container{
        padding: 20px;
    } 
}
.active .demo-video-shadow{
    display: none;
}
.demo-video-shadow{
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
    /*display: none;*/
}
.demo-video-phone{
    display: flex;
    position: absolute;
    align-items: center;
    /*top: 36px;
    right: 80px;*/
    top: 10px;
    right: 10px;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 19px;
    color: #1F1F1F;
    /*opacity: 0.3;*/
    text-decoration: none;
    cursor: pointer;
    transition-duration: 0.3s;
    padding: 20px;
    background: #FFFFFF;
    border-radius: 5px;
}
.demo-video-phone:hover{
    opacity: 0.6;
}
.demo-video-phone svg{
    margin-right: 10px;
}
.demo-video-container.active > .demo-video-phone {
    top: inherit;
    bottom: 60px
}
.demo-free-trial{
    display: none;
}
.demo-video-container.active > .demo-free-trial{
    display: flex;
    height: 60px;
    padding: 0 30px;
    right: 245px;
    color: #fff;
    background-color: #4285F4;
    border-radius: 5px;
    position: absolute;
    z-index: 10;
    bottom: 60px;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    transition-duration: 0.3s;
}
.demo-video-container.active > .demo-free-trial:hover{
    background-color: #29487D;
}
@media (max-width:470px){
    .demo-video-container.active > .demo-free-trial{
        bottom: 140px;
        width: calc(100% - 40px);
        right: 20px;
    }
    .demo-video-container.active > .demo-video-phone{
        width: calc(100% - 40px);
        right: 20px;
    }
}
.demo-video-wrap{
    display: flex;
    width: 100%;
    /*position: relative;*/
    height: 0; 
    padding-bottom: 56.25%; /*16:9*/
    padding-top: 0;
    overflow: hidden;
}
@media screen and (min-width: 320px) and (max-width: 767px) and (orientation: portrait) {
    .demo-video-wrap {
        position: relative;
    }
}
.demo-video-wrap > iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}
.demo-video-wrap-action{
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.demo-video-wrap-action img{
    width: 100%;
}
.demo-video-wrap-action svg{
    position: absolute;
}












