:root {
    --background-color-dark: rgb(63, 63, 63);
    --font-color-light: rgba(247, 247, 247, 1);
}

.font-color-light {
    color: var(--font-color-light);
}

.welcome-body {
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    max-width: 100%;
    width: 100%;
    margin: 0px;
    clear: both;
    content: "";
    box-sizing: border-box;
}

.center-content {
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;

    width: 100vw;
    min-width: 100vw;
    max-width: 100%;
    width: 100%;
    margin: 0px;
    clear: both;
    content: "";
    box-sizing: border-box;
    overflow: hidden;
}

.center-content-sub {
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;

    width: 100vw;
    min-width: 100vw;
    max-width: 100%;
    width: 100%;
    margin: 0px;
    clear: both;
    content: "";
    box-sizing: border-box;
    overflow-x: hidden;
}

.welcome-wrapper {
    background-color: var(--background-color-dark);
    width: 360px;
    padding: 1rem 1.3rem;
    color: var(--font-color-light);
    border-radius: 9px;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    -ms-border-radius: 9px;
    -o-border-radius: 9px;
}

.btn {
    padding: 0.70rem 1.10rem;
}

.form-control {
    padding: 0.70rem 1.10rem;
}

.svg-icon-sm {

    display: flex;
    flex-direction: row;
    align-items: center;
    width: 15px;
    height: 15px;
    margin-right: 0.1rem;

}

.svg-icon {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 21px;
    height: 21px;
    margin-right: 0.1rem;
}

.svg-icon-lg {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 42px;
    height: 42px;
    margin-right: 0.1rem;

}

.svg-icon-xl {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 63px;
    height: 63px;
    margin-right: 0.1rem;

}

.text-medium {
    font-size: 14px;
    letter-spacing: 1pt;
}

.text-xl {
    font-size: 38px;
    letter-spacing: 1pt;
}

.button-text {
    font-size: 14px;
    letter-spacing: 1pt;
}

.uploadSection {
    cursor: pointer;
    background-color: rgb(46, 46, 46);
    height: 50%;
    color: rgb(235, 235, 235);
    transition: width 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    -webkit-transition: width 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    -moz-transition: width 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    -ms-transition: width 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    -o-transition: width 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.watchSection {
    cursor: pointer;
    background-color: rgb(235, 235, 235);
    height: 50%;
    color: rgb(46, 46, 46);
    transition: width 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    -webkit-transition: width 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    -moz-transition: width 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    -ms-transition: width 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    -o-transition: width 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.uploadSection:hover, .watchSection:hover {
    background-color: rgb(9, 144, 197);
    color: rgb(235, 235, 235);
    transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    -webkit-transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    -moz-transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    -ms-transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    -o-transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.settings-container {
    position: absolute;
    top: 5px;
    right: 5px;
    color: rgb(235, 235, 235);
    cursor: pointer;
    padding: 0.55rem 0.90rem;
    transition: transform 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    -webkit-transition: transform 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    -moz-transition: transform 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    -ms-transition: transform 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    -o-transition: transform 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.setting-items:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.btn-svg-icon {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 30px;
    height: 30px;
    margin-right: 0.1rem;
}

.m-content {
    background-color: rgb(235, 235, 235);
    border-radius: 9px;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    -ms-border-radius: 9px;
    -o-border-radius: 9px;
}

.video-content-button {
    border: 1px solid gray;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.video-content-button-save {
    border: 1px solid gray;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}



.video-content {
    background-color: #28a745;
    color: rgb(235, 235, 235);
    border: 1px solid #28a745;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.video-content-error {
    background-color: #d81515;
    color: rgb(235, 235, 235);
    border: 1px solid #d81515;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    cursor: pointer;
}

#btnShowDialogUploadFile, #btnUploadMedia {
    cursor: pointer;
}



#video-content-button .svg-icon-xl {
    transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    -webkit-transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    -moz-transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    -ms-transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    -o-transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

#video-content-button:hover {
    background-color: rgb(9, 144, 197);
    color: rgb(235, 235, 235);
    border: 1px solid rgb(235, 235, 235);
}

#video-content-button:hover .svg-icon-xl {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

#video-content-button-save .svg-icon-xl {
    transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    -webkit-transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    -moz-transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    -ms-transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    -o-transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

#video-content-button-save:hover {
    background-color: rgb(7, 192, 90);
    color: rgb(235, 235, 235);
    border: 1px solid rgb(235, 235, 235);
}

#video-content-button-save:hover .svg-icon-xl {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.text-filename {
    width: 100%;

    min-width: 100%;

    max-width: 100%;
}

#btnLogout {
    cursor: pointer;
}

.line-with-text {
    display: flex;
    align-items: center;
    text-align: center;
    width: 100%;
    margin: 40px 0;
}

.line-with-text::before,
.line-with-text::after {
    content: '';
    flex: 1;
    border-top: 1px solid #ccc;
}

.line-with-text span {
    padding: 0 15px;
    font-weight: 400;
    color: #555;
    white-space: nowrap;
    font-size: 21px;
}

.svg-button {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.25rem !important;
}

#linkGenerated {
    cursor: pointer;
}
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .uploadSection {
        height: 100%;
    }

    .watchSection {
        height: 100%;
    }

    .settings-container {
        color: rgb(46, 46, 46);
    }

    .watchSection:hover~.settings-container .setting-items {
        color: rgb(235, 235, 235);
    }

    .btn-svg-icon {
        width: 30px;
        height: 30px;

    }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {}
