:root {
    --main-color: #5f0e65;
}

body{
    font-size: 0.8em !important;
}

.main_logo{
    width: 150px;
}

.title_container{
    border-bottom: 1px solid #dfdfdf;
}

.title_header{
    color: var(--main-color);
    font-weight: bold;
    font-size: 25px;
    line-height: 25px;
}

.title_header img{
    float: left; 
    margin-right: 20px;
    height: 50px;
}

.tnc_content{
    margin-left: 25px;
    margin-bottom: 10px;
}

.tnc_content::before{
    content: '';
    background: url(/asset/image/check.svg);
    margin-left: -25px;
    margin-top: 5px;
    position: absolute;
    width: 13px;
    height: 13px;
    background-size: 13px 13px;
    background-repeat: no-repeat;
}

.file_name{
    margin-left: 25px;
    font-weight: bold;
}

.file_name::before{
    content: '';
    background: url(/asset/image/document.svg);
    margin-left: -20px;
    margin-top: 3px;
    position: absolute;
    width: 13px;
    height: 13px;
    background-size: 13px 13px;
    background-repeat: no-repeat;
}

#sendFile{
    border: 1px solid var(--main-color);
    padding: 5px 20px;
    border-radius: 5px;
    background-color: transparent;
    color: var(--main-color);
    font-weight: bold;
}

#sendFile:disabled{
    background-color: #636363;
    border: 0;
    color: white;
}

.main_color{
    color: var(--main-color);
}

.sub_holder{
    margin-bottom: 5px;
}

.sub_holder .judul{
    color: gray;
}

.sub_holder .content{
    font-weight: bold;
}

.link_detail{
    color: #f7cf0a;
    cursor: pointer;
}

.link_detail:hover{
    color: #dbb911;
    text-decoration: none;
}

.link_separator{
    color: #dfdfdf;
}

.file_holder{
    border: 1px solid #dfdfdf;
    border-radius: 3px;
}

.file_component{
    border-bottom: 1px solid #dfdfdf;
}

.file_component .file_icon_status img{
    width: 12px;
}

.file_size{
    color: #a9a9a9;
    font-size: 0.8em;
}

.file_choser{
    height: 100px;
    color: #a9a9a9;
    font-style: italic;
    font-size: 0.9em;
}

.title_col_2{
    color: var(--main-color);
    font-size: 1.8em;
}

.submit_desc{
    color: #a9a9a9;
    font-size: 0.9em;
}

.custom-nav-dropdown{
    left: -35%;
    text-align: right;
}

.file_upload_progress{
    width: 0%;
    height: 3px;
    background-color: #f7cf0a;
    position: relative;
    margin-top: -3px;
    border-radius: 10px;
    transition: 0.5s ease;
}

#uploadArtwork{
    border: 0;
    min-height: auto;
    height: 100%;
    transition: 1s ease;
    cursor: pointer;
    background: #ffffff radial-gradient(circle, transparent 1%, #bd9abf 1%) center/15000%;
}

#uploadArtwork:hover,
#uploadArtwork.dz-hover{
    background-color: #ffffff;
    background-size: 10%;
    transition: background 0.3s;
}

.dz-message{
    height:100%;
    transition: 0.5s ease;
}

#uploadArtwork small{
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 0;
    background: none;
    color: #a9a9a9;
    font-size: 1.1em;
    transition: 1s ease;
    text-align: center;
}

#uploadArtwork:hover small,
#uploadArtwork.dz-hover small{
    color:white;
}

.dz-custom-remove-btn{
    font-size: 0.8em;
    margin-left: 25px;
    background: url(/asset/image/close-gray.svg);
    width: 12px;
    height: 12px;
    background-size: contain;
    background-repeat: no-repeat;
    padding: 0 !important;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    transition: 0.2s linear;
}

.dz-custom-remove-btn:hover{
    background: url(/asset/image/close.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.disabledz{
    background: gray !important;
    cursor: default !important;
}

.disabledz small{
    color: white !important;
    cursor: default !important;
}

.modal-header button{
    outline: 0 !important;
}

.modal-header img{
    width: 25px;
}

.modal-header .error-title{
    font-size: 17px;
    margin-left: 12px;
    font-weight: bold;
}

.modal-body{
    padding-top: 0;
}

.modal-body #errorUploadFileName{
    font-style: italic;
}

.modal-body #errorUploadMsg{
    color: gray;
}

.tooltip_c {
    position: relative;
    /* display: inline-block; */
}
  
.tooltip_c .tooltiptext_c {
    visibility: hidden;
    width: 100%;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 120%;
    /* left: 50%; */
    /* margin-left: -75px; */
    opacity: 0;
    transition: opacity 0.3s;
}
  
.tooltip_c .tooltiptext_c::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltip_c:hover .tooltiptext_c {
    visibility: visible;
    opacity: 1;
}

#main_success img{
    width: 30%;
    min-width: 300px;
}