@import url('https://cdn.jsdelivr.net/npm/intl-tel-input@16.0.3/build/css/intlTelInput.css');

/* Elements */
button {
    max-width: 100%;
}
button:hover {
    cursor: pointer;
}
button:disabled {
    cursor: wait!important;
    opacity: 0.5;
}

/* Hidden Element Classes */
@media only screen and (min-width: 992px) {
    .hiddenDesktop {
        display: none !important;
    }
}
@media screen and (max-width: 992px) {
    .hiddenTablet {
        display: none !important;
    }
}
@media screen and (max-width: 600px) {
    .hiddenMobile {
        display: none !important;
    }
}

/* Popups */
.popup-layout{
    display:none;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0px;
    background: rgba(0,0,0, 0.5);
    z-index: 9;
}
.popup-layout .popup {
    width: 720px;
    top: 120px;
    position: fixed;
    left: 50%;
    transform: translate(-50%, 0%);
    height: auto;
    background: white;
    border-radius: 10px;
    min-width: 350px;
}
.popup-layout .popup .popup-close-btn {
    position: absolute;
    right: 25px;
    top: 15px;
    font-size: 25px;
    color: #cdcdcd;
    z-index: 100;
    text-align: center;
}
.popup-layout .popup .popup-close-btn:hover {
    cursor:pointer;
}
.popup-layout .popup {
    max-height: calc(100% - 120px);
    overflow: auto;
}

/* Sticky Videos CSS */
@keyframes fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.video.stuck {
    left: initial;
    z-index: 99;
    position: fixed;
    animation: fade-in .25s ease forwards;
}
.video.top-right {
    top: 10px;
    right: 10px;
}
.video.top-left {
    top: 10px;
    left: 10px;
}
.video.bottom-right {
    right: 10px;
    bottom: 10px;
}
.video.bottom-left {
    left: 10px;
    bottom: 10px;
}
.close-video {
    display: none;
    position: absolute;
    right: 2%;
    top: 2%;
    z-index: 999;
    color: white;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.25em;
}
.close-video.show {
    display: inline;
}

/* Bullet Lists */
.bullet-list-container {
    list-style: none;
    word-wrap: break-word;
}
.bullet-list-container ul {
    padding-inline-start: 0;
}
.bullet-list-container li {
    padding-bottom: 6px;
    list-style-type: none;
    padding-left: 2em;
}
.bullet-list-container ul li i.far, .bullet-list-container ul li i.fas, .bullet-list-container ul li i.fad, .bullet-list-container ul li i.fal {
    margin-left: -2em;
    display: inline-block !important;
    margin-right: 0.71428571em;
}

/* Containers */
.container {
    box-sizing: border-box;
    margin: 0 auto;
    width: 100%;
    font-family: Lato, sans-serif;
}
.container.container-large {
    max-width: 1120px;
}
.container.container-medium {
    max-width: 960px;
}
.container.container-small {
    max-width: 720px;
}
.container.container-xsmall {
    max-width: 550px;
}
.container .container {
    box-sizing: border-box;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    font-family: Lato, sans-serif;
}
.container.container-fluid {
    max-width: 100%!important;
}
.row {
    padding: 0px;
}

/* Videos */
.video-container {
    min-width: 50px;
    min-height: 50px;
    max-width: 100%;
    position: relative;
    left: 0;
    /*padding-bottom: 56.25%;*/
    /* padding-top: 25px; */
    /*height: 0;*/
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
}

.video-sound-overlay {
    cursor: pointer;
    z-index: 1;
    position: absolute;
    left: 0%;
    right: 0%;
    top: 0%;
    bottom: 0%;
    width: 100%;
    height: 100%;
    background-image: url('/assets/img/builder/video-play-button.png');
    background-repeat: no-repeat;
    margin: auto;
    background-size: 150px;
    background-position: center;
}
.video-unmute-button {
    width: 200px;
    padding: 10px;
    position: absolute;
    margin-top: 5px;
    margin-left: 10px;
    animation: pulse 2s infinite;
    animation-timing-function: ease-out;
}

.audio-container {
    padding: 10px;
}
@media only screen and (max-width: 768px) {
    .video-container{
        position: relative;
        height: auto!important;
        padding-bottom: 56.25% !important;
    }
    .video-container.hosted{
        padding-bottom: 0px !important;
    }
}
@media only screen and (max-width: 320px) {
    .video-container{
        position: relative;
        height: auto!important;
        padding-bottom: 56.25% !important;
    }
    .video-container.hosted{
        padding-bottom: 0px !important;
    }
}
div.video img{
    width: 100%;
}

/* Comments */
.comment_reply_btn{
    position: absolute;
    right: 35px;
    padding: 0px;
}
.comment_reply_form{ overflow: hidden; padding: 0px;
    float:left; width:100%; background:rgba(0,0,0,0.05); max-height:0px;
    -webkit-transition: height 0.5s ease;
-moz-transition: max-height 0.5s ease;
-ms-transition: max-height 0.5s ease;
-o-transition: max-height 0.5s ease;
transition: max-height 0.5s ease;
}
.comment_reply_form *{ visibility:hidden; }
.comment_reply_form.opened{ padding: 10px;
    float:left; width:100%; background:rgba(0,0,0,0.05); border-bottom: 3px solid #8985d0; max-height: 500px;
    -webkit-transition: max-height 0.5s ease;
-moz-transition: max-height 0.5s ease;
-ms-transition: max-height 0.5s ease;
-o-transition: max-height 0.5s ease;
transition: max-height 0.5s ease;
}
.comment_reply_form.opened *{ visibility:visible; }

.comment_reply_form input, .comment_reply_form textarea{
    padding:0px; border:none; border-radius: 2px; background-color:#fff; border:1px solid #ddd; font-size:16px; padding:5px; margin-bottom: 10px;
    min-width: 400px; padding: 4px 10px;
}
.comment_reply_form form button[type="submit"]{
    padding: 6px 20px 8px 20px; border-radius: 2px; border: 1px solid #5bc0de; background-color: #5bc0de; font-weight: 400; margin-top: 5px; color:white;
    font-size:18px;
}
.comments{
    float:left; width:100%; height:auto; padding:20px; text-align:left;
}
.comment_body{
    float:left; width:100%; height:auto; padding:0px; padding-top:25px; padding-bottom:25px; border-top: 1px solid #eee;
}
.comment_body{
    font-family: "Open Sans";
}
.comment_avatar{
    float:left; width:70px; height:70px; background-color:#f2f2f2; border-radius: 2px; padding:0px;
}
.comment_avatar img{
    width: 100%; height: 100%;
}
.comment_text{
    float:left; font-size:16px!important; width:calc(100% - 70px); height:auto; padding-top:0px; color:#777; padding-top:5px;
}
.comment_reply{
    float:left; font-size:12px!important;
}
.comment_name{
    float:left; font-size:15px!important; font-weight:700; width:calc(100% - 70px); color:#444; padding-top:0px; padding-bottom:0px; font-size:11px;
    text-overflow: ellipsis; overflow: hidden;
}
.comment_date{
    color:#ccc; font-size:11px; display: inline-block; padding: 0px; padding-left: 10px; letter-spacing: 1px;
}
.comment_add{
    float:left; width:100%; height:auto; padding:0px; padding-top:10px; padding-bottom:10px;
}
.comment_add form{
    padding:0px;
}
.comment_add form input, .comment_add form textarea{ font-family: "Open Sans";
    padding:0px; border:none; border-radius: 2px; background-color:#fff; border:1px solid #ddd; font-size:16px; padding:5px; font-size:16px;
}

.comment_add form input{
    min-width: 400px; padding: 4px 10px;
}
.comment_add form button[type="submit"]{ font-family: "Open Sans";
    padding: 6px 20px 8px 20px; border-radius: 2px; border: 1px solid #5bc0de; background-color: #5bc0de; font-weight: 400; margin-top: 5px; color:white;
    font-size:18px;
}
.comment_add form button[type="submit"]:hover{
    background-color: #46b1d1;
}
.comment_post_response{
    display:none; float: left; width:100%; font-weight: 400; color: #31708f; background-color: #d9edf7; border-color: #bce8f1; border-radius:2px; padding:10px;
}
.comment_infos{
    float: left;
    padding: 0px;
    width: calc(100% - 70px);
    padding-left: 15px;
}
@media (max-width: 768px) {
    .comments{padding:10px;}
    section.container, .container {
        padding:5px!important;
    }
    #_popup_content{
        padding:0px!important;
        overflow-y: scroll;
    }

    .comment_avatar{
        width:50px; height:50px;
    }
    .comment_text, .comment_name{
        width:calc(100% - 50px);
    }
    .comment_add form input, .comment_add form textarea{
        width: 100%; min-width:0px;
    }

    .comment_reply_form form input, .comment_reply_form form textarea{
        width: 100%; min-width:0px;
    }
    .comment_add form button[type="submit"], .comment_reply_form form button[type="submit"]{
        width: 100%;
    }

    #comment_reply_form_btn_cancel{
        float: left; width: 100%; text-align:center;
    }
}
@media (max-width: 550px) {
  .comment_body{
    padding-top:15px; padding-bottom:15px;
  }
  #comments{
    padding:0px;
  }
  .comment_infos{
    padding-top:10px;
  }
  .comment_text, .comment_name{ width:100%; padding:0px;}
  .comment_reply_btn{ right:5px; }
}

.completed-nav-link {
    color: black !important;
}

.uncompleted-nav-link i {
    color: lightgrey !important;
    float: right;
    padding-top: .3em;
    padding-left: .3em;
}

/* Extra large devices (large desktops, 1200px and up) */
@media (max-width: 1199.98px) {
    img {
        height: auto!important;
    }
    .popup-layout .popup {
        min-width: 40%;
    }
}

/* Large devices (desktops, 992px and up) */
@media (max-width: 991.98px) {
    .popup-layout .popup {
        min-width: 60%;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 767.98px) {
    h1 {
        font-size: 26px!important;
    }
    h2 {
        font-size: 24px!important;
    }
    h3 {
        font-size: 22px!important;
    }
    h4 {
        font-size: 20px!important;
    }
    p.text, .bullet-list-container > ul {
        font-size: 16px!important;
    }
    .popup-layout .popup {
        top: 80px;
        height: auto;
        min-width: 70%;
        max-width: 100%;
        overflow: auto;
        border-radius: 10px;
    }
    .popup-layout .popup .popup-close-btn {
        top: 0px;
        right: 15px;
        color: black;
        z-index: 100;
    }

    button .button-text {
        font-size: 16px!important;
    }
    button .button-subtext {
        font-size: 12px!important;
    }

    div.container {
        padding: 10px!important;
    }
    div[class*="col-"] {
        padding: 10px!important;
    }

    div#builder_message_preview {
        padding: 10px;
        font-size: 16px;
    }

    .video-unmute-button {
        width: 150px;
    }
    .video-sound-overlay {
        background-size: 100px;
    }
}

/* Responsive Devices */
/* Small devices (landscape phones, 576px and up) */
@media (max-width: 575.98px) {
    .popup-layout .popup {
        min-width: 100%;
    }
}

/* Modal payment un progress*/
.payment-in-progress {
    display: flex;
    position: fixed;
    top: 0px;
    background: rgba(0,0,0,0.75);
    width: 100%;
    z-index: 1;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}
.payment-in-progress.hidden {
    display: none;
}
.payment-in-progress > .modal-payment-in-progress {
    border: 1px solid black;
    padding: 60px 80px;
    font-size: 24px;
    color: black;
    border-radius: 8px;
    background: white;
    width: 500px;
}
.payment-in-progress > .modal-payment-in-progress i {
    font-size: 40px;
}
.payment-in-progress > .modal-payment-in-progress i.fa-exclamation-circle {
    font-size: 100px;
}

@media (max-width: 575.98px) {
    .payment-in-progress > .modal-payment-in-progress {
        width: 100%;
        padding: 40px;
    }
}

/* collapse css start */
.collapse-element {
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 8%);
    transition: transform .3s ease,box-shadow .3s ease;
}
.collapse-element:hover {
    box-shadow: 0 8px 16px 10px rgb(0 0 0 / 8%);
    transform: translate3d(0,-4px,0);
}
.collapse-item-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.collapse-item-icon i.fa-angle-down {
    transition-duration: 500ms;
}
.collapse-item-title[aria-expanded="true"] .collapse-item-icon i.fa-angle-down {
    transform: rotate(-180deg);
}
.collapse.show {
    visibility: visible;
}
/* collapse css end */