.sunpics-print-files-parent {
    width: 100%;
    height: 100%;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffffee;
    border-radius: 10px;
    top: 0;
    left: 0;
    z-index: 9;
}

.sunpics-print-files-content-wrapper {
    width: auto;
    height: 200px;
    margin-top: -200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 0 7px 2px #cccccc;
    border-radius: 4px;
    background: #ffffff;
    padding: 10px;
    color: #363b3f !important;
    z-index: 9;
    border: 3px solid transparent;
    position: relative;
}

.sunpics-print-files-content-options {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    margin-top: 10px;
    gap: 10px;
}

.sunpics-print-files-option-item-images {
    display: none;
}

.sunpics-print-files-content-title {
    font-size: 20px;
    font-weight: 500;
}

.sunpics-print-files-option-item {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    text-align: center;
}

.sunpics-print-files-option-item:first-child {
    border-right: 1px solid #cccccc;
}

.sunpics-print-files-content-wrapper.sunpics-print-files-wrapper-border-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid #ffac00;
    border-radius: 4px;
    box-sizing: border-box;
    animation: fill-border 1s linear forwards;
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

@keyframes fill-border {
    0% {
        clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
    }
    100% {
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }
}