﻿
.costumer__portal__container {
    padding: 30px 400px;
}
.form__container.element__new__password, .element__new__password {
    display: none;
}
.main__portal {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 60px;
}

    .main__portal > * {
        margin-right: 30px;
        flex:1;
    }
        .main__portal > *:last-child {
            margin-right: unset;
        }

.login__portal {
    width: 100%;
}

.body__login__portal {
    background-color: #F0F0F0;
    padding: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
}

.form__container {
    width: 100%;
}

.input__form {
    background-color: #FFF!important;
}

.button__primary {
    margin: 5px 0;
    width: 100%;
    padding: 20px 40px !important;
    border-radius: 15px !important;
}

.tabs__portal {
    display: flex;
    width: 100%;
}

    .tabs__portal > * {
        flex: 1;
        padding: 30px;
        text-align: center;
        cursor: pointer;
        opacity: 0.8;
        transition: filter 0.3s ease;
    }

        .tabs__portal > *:hover {
            filter: brightness(1.4);
        }

    .tabs__portal > .active {
        text-decoration: underline;
        opacity: unset !important;
    }

    .tabs__portal .tab__client {
        border-top-left-radius: 30px;
    }

    .tabs__portal img {
        width: 20px;
        height: 20px;
    }
.tab__manager {
    color: #FFF;
    border-top-right-radius: 30px;
}

.video__main {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.video-container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    width: 100%;
}

#video {
    height: 100%;
    width: 100%;
    border-radius: 25px;
    margin: 30px;
}

#overlayPlayPause {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0);
    border: none;
    cursor: pointer;
    transition: opacity 0.3s;
    height: 100%;
    width: 100%;
}
.video__stream {
    width: 100%;
}

#playPauseIcon {
    width: 45px;
}

.video__title, .video__description {
    font-weight: 400;
    text-align: center;
    font-size: 24px;
}

.questions {
    padding: 30px 400px;
}

.questions__body {
    display: flex;
    height: 100%;
}

    .questions__body > div {
        flex: 1;
    }

        .questions__body > div:first-child {
            margin-right: 30px;
        }

.need__help {
    height: auto;
    padding: 70px 40px;
    border-radius: 25px;
    color: #FFF;
}

    .need__help > div {
        margin-bottom: 15px;
    }

        .need__help > div:last-child {
            margin-bottom: unset;
        }

.need__help__title {
    font-size: 28px;
    font-weight: 700;
}

.need__help__description {
    font-size: 22px;
    font-weight: 400;
}

.need__help__contact {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 10px 0;
}

    .need__help__contact img {
        width: 25px;
        height: 25px;
        margin-right: 15px;
    }

.need__help__contact__container {
    display: flex;
    flex-direction: column;
}

.need__help__hour__title {
    font-size: 14px;
    font-weight: 700;
}

.faq {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
}

.faq__title {
    font-weight: 700;
    font-size: 38px;
    margin-bottom: 15px;
}

.faq__questions {
    position: relative;
    z-index: 1;
    /*height: 56px;*/
    width: 100%;
    background-color: #FFFFFF;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    justify-content: start;
    align-items: center;
}

.main__question {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

    .main__question img {
        width: 20px;
        height: 20px;
    }

.main__answer {
    display: none;
    opacity: 0;
    padding: 20px;
    color: #FFF;
    margin-top: -10px;
    text-align: justify;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: max-height 0.4s ease, opacity 0.4s ease;
}

.faq__container {
    width: 100%;
    margin-bottom: 10px;
    cursor: pointer;
}

.active__faq .main__answer {
    display: block;
    opacity: 1 !important;
}
@media (min-width: 1920px) {
    .costumer__portal__container, .questions {
        padding-right: 400px !important;
        padding-left: 400px !important;
        padding: 30px 400px !important;
    }
}
@media (max-width: 1626px) {
    .costumer__portal__container, .questions {
        padding-right: 300px !important;
        padding-left: 300px !important;
    }
}

@media only screen and (max-width: 1440px) {
    .costumer__portal__container, .questions {
        padding-right: 220px !important;
        padding-left: 220px !important;
    }
}

@media only screen and (max-width: 1250px) {
    .costumer__portal__container, .questions {
            padding-right: 180px !important;
            padding-left: 180px !important;
    }
}

@media only screen and (max-width: 1140px) {
    .costumer__portal__container, .questions {
        padding: 30px!important;
    }
    .main__portal {
        flex-direction: column;
    }

    .main__portal > * {
        margin: 30px 0;
    }

    .need__help {
        width: 100%;
        text-align: center;
    }

    .questions__body {
        flex-direction: column;
        align-items: center;
    }

        .questions__body > div:first-child {
            margin-right: unset;
        }

    .need__help__contact__container {
        align-items: center;
    }

    .faq {
        width: 100%;
    }
}


