#modalOpenInfo_bg, #modalUAImgPic_bg {
    left: 0;
    height: 100%;
    z-index: 9999998;
    background: rgba(0, 0, 0, 0.50);
}

#modalOpenInfo_div {
    left: 50%;
    transform: translateX(-50%);
    height: calc(100vh - 150px);
    margin: 75px auto;
    z-index: 9999999;
}

#modalOpenInfo_div * {
    outline: none;
}

#modalOpenInfo_bg, #modalOpenInfo_div, #modalUAImgPic_bg {
    position: fixed;
    top: 0;
    width: 100%;
    display: none;
}

#modalOpenInfo_divDialog, #modalUAImgPic_divDialog {
    width: 100%;
    height: 100%;
    display: flex;
}

#modalOpenInfo_divContent, #modalUAImgPic_divContent {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    outline: 0;
    background: white;
}

#modalUAImgPic_divContent {
    padding: 6rem 1rem;
}

#modalOpenInfo_divContentTitle {
    line-height: 40px;
    display: flex;
}

#modalOpenInfo_divContentTitleInfo {
    display: flex;
    flex-grow: 1;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    color: #333;
}

#modalOpenInfo_divContentTitleClose {
    width: 40px;
}

#modalOpenInfo_divContentTitleNav {
    display: flex;
    width: 80px;
}

#modalOpenInfo_divContentTitleClose {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

#modalOpenInfo_divContentTitle .fa, #modalOpenInfo_divContentTitle .fas {
    font-size: 18px;
}

.modalOpenInfo_prev, .modalOpenInfo_next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 100%;
}

.modalCloseButton, .modalOpenButton {
    width: 100%;
    height: 100%;
    border: 0;
    background: transparent;
    outline: none;
    cursor: pointer;
    padding: 0;
}

.modalOpenButton[disabled] {
    cursor: default !important;
}
#modalOpenInfo_divContentBody {
    width: 100%;
    height: calc(100% - 40px);
    background-color: black;
}

#modalOpenInfo_divContentBody object {
    border-radius: 0 0 5px 5px;
}

@media (min-width: 1200px) {
    #modalOpenInfo_div {
        max-width: 1100px;
    }
}

@media (max-width: 1199px) {
    #modalOpenInfo_div{
        width: 90%;
    }
}

.translateModal {
    animation: translateModal .25s linear;
}

@keyframes translateModal {
    0% {
        transform: translateY(50px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

#modalUAImgPic_divContentBody {
    width: 100%;
    height: 100%;
}

#modalUAImgPic_divContentTitleClose {
    position: absolute;
    right: 0;
    top: 0;
    height: 40px;
    width: 40px;
}

#modalUAImgPic_div {
    position: fixed;
    top: 50%;
    width: 100%;
    max-width: 700px;
    display: none;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

#modalUAImgPic_divContentBody {
    flex-direction: column;
}

#modalUAImgPic_divContentBodyForm, #divImgProfile {
    position: relative;
    display: flex;
    border-radius: 50%;
    cursor: pointer;
    flex-direction: column;
    max-width: 180px;
    margin: 0 auto;
}

#modalUAImgPic_divContentBodyFormImage, #divImgProfileContent {
    position: relative;
    display: flex;
    border-radius: 50%;
    padding: 5px;
    background: #F0F0F0;
    cursor: pointer;
    margin-bottom: 15px;
}

#modalUAImgPic_divContentBodyFormImage #uploadIcon, #divImgProfileContent #uploadIcon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 40px;
    margin: -20px 0 0 -25px;
    font-size: 35px !important;
    transform: translateY(10px);
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    opacity: 0;
    z-index: 2;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.20);
    transition: .5s all;
}

#modalUAImgPic_divContentBodyFormImage:hover #uploadIcon, #divImgProfileContent:hover #uploadIcon {
    opacity: 1 !important;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
}

#modalUAImgPic_divContentBodyFormImage #opacityHover, #divImgProfileContent #opacityHover {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    transition: .5s all;
}

#modalUAImgPic_divContentBodyFormImage:hover #opacityHover, #divImgProfileContent:hover #opacityHover {
    opacity: .5;
}

#modalUAImgPic_divContentBodyFormImageIcon, #divImgProfileUserIcon {
    width: 170px;
    height: 170px;
    background: #F0F0F0;
    color: #CDCDCD;
    border-radius: 50%;
    background-position: top left;
    background-size: cover;
}

#modalUAImgPic_divContentBodyFormImageIcon .fas, #divImgProfileUserIcon .fas {
    font-size: 70px !important;
}

#previewModalImgPic {
    border-radius: 50%;
}

.buttonModalUAImgPic {
    display: inline-block;
}

.buttonConfirmModalUAImgPic {
    display: none;
    z-index: 9999;
    position: relative;
}

#deletePreviewImgPic, #divImgProfileDelete {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 9999;
    display: none;
}

#modalUAImgPic_divContentBodyHeader {
    padding-bottom: 30px;
}

#modalUAImgPic_divContentBodyHeader h3 {
    color: #272727;
    font-weight: bold;
    font-size: 22px !important;
    margin: 0 0 5px 0;
    line-height: 30px;
}

#modalUAImgPic_divContentBodyHeader h5 {
    color: #888888;
    font-weight: normal;
    margin: 0;
}

#modalUAImgPic_divContentBodyFormImageIcon, #modalUAImgPic_divContentBodyFormImage #uploadIcon, #modalUAImgPic_divContentBody,
#divImgProfileUserIcon, #divImgProfileContent #uploadIcon {
    display: flex;
    align-items: center;
    justify-content: center;
}

#modalUAImgPic_divContentBodyFooter {
    padding-top: 10px;
    color: #888888;
    margin: 0 auto;
    width: 100%;
    font-size: 13px !important;
}

@media only screen and (max-width: 768px) {
    #modalUAImgPic_div {
        max-width: 80vw;
    }

    #modalUAImgPic_divContentBodyFooter {
        width: 100%;
    }

    #modalUAImgPic_divContentBodyHeader h3 {
        font-size: 18px !important;
    }

    #modalUAImgPic_divContentBodyHeader h5, #modalUAImgPic_divContentBodyFooter {
        font-size: 13px !important;
    }

    #modalOpenInfo_divContentTitleNav {
        width: 60px;
    }
}

#modalOpenInfo_div[data-type="openVideoModal"] {
    height: auto;
    max-height: calc(100vh - 150px);
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: calc(680px + 5rem);
    margin: 0;
}

#modalOpenInfo_div[data-type="openVideoModal"] #modalOpenInfo_divContentBody {
    background: transparent;
}

#modalOpenInfo_divContentBody > *::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}
#modalOpenInfo_divContentBody > *::-webkit-scrollbar-track {
    background: #ffffff;
}
#modalOpenInfo_divContentBody > *::-webkit-scrollbar-thumb {
    background-color: #b0b0b0;
    border-radius: 6px;
    border: 3px solid #ffffff;
}
#modalOpenInfo_divContentBody > *::-webkit-scrollbar-thumb:active {
    background-color: #909090;
}