/* Main */

.circle {
    width: 1rem;
    height: 1rem;
    background-color: #ff6e1b;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    position: relative;
}

.circle::before {
    content: "?";
}

.hover-div {
    position: absolute;
    background-color: rgba(0, 0, 0, 1);
    color: #fff;
    padding: 0.625rem;
    border-radius: 0.625rem;
    width: 31.25rem;
    display: none;
}

.color-orange {
    color: #ff6e1b;
}
.color-red {
    color: red;
}
.font-bold {
    font-weight: bold;
}
.border-color {
    border-color: #d3d3d6;
}
.mr-10px {
    margin-right: 0.625rem;
}
.mr-20px {
    margin-right: 1.25rem;
}

#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    border: 1rem solid #262834;
    border-top: 1rem solid #ff6e1b;
    border-radius: 50%;
    width: 6.25rem;
    height: 6.25rem;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.select-btn {
    color: #65666e;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 6.25rem;
    background-color: #262834;
    border-color: #f6f6f7;
    border-style: solid;
    border-width: 1px;
    appearance: none;
    padding: 0.375rem;
}

.select-wrapper {
    position: relative;
}

.flipped-vertical {
    transform: rotate(180deg) !important;
    transition: transform 0.1s linear;
}

.fa-div {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    transition: transform 0.1s linear;
    color: #fff;
    pointer-events: none;
}

.option-label {
    color: #fff;
    border-radius: 0.625rem;
    width: 0.625rem;
    height: 1px;
}

.file-btn {
    background-color: #262834;
    padding: 0 0.625rem;
    border: 1px solid #ff6e1b;
    border-radius: 6.25rem;
    cursor: default;
    text-decoration: none;
    color: #fff;
}

.hover {
    border-color: aqua;
    color: aqua;
}

.column-width {
    width: calc(100%);
}

.input-container {
    display: flex;
}

.file-input {
    flex: 1;
    line-height: 1.875rem;
    border-radius: 6.25rem;
    border: none;
    background-color: #ff6e1b;
    color: #fff;
    height: 2.5rem;
    width: 12.5rem;
    cursor: pointer;
    margin-left: 35%;
    padding-top: 0.375rem;
    overflow: hidden;
    transition: transform 0.1s ease;
}

.file-input-2 {
    flex: none;
    line-height: 1.875rem;
    border-radius: 6.25rem;
    border: none;
    background-color: #ff6e1b;
    color: #fff;
    height: 2.5rem;
    width: 12.5rem;
    cursor: pointer;
    padding-top: 0.375rem;
    overflow: hidden;
    transition: transform 0.1s ease;
}

.file-input:hover {
    transform: scale(1.05);
}

.file-input-2:hover {
    transform: scale(1.05);
}

.file-input-dragenter {
    transform: scale(1.05);
    background-color: aqua;
}

@media (max-width: 1350px) {
    .file-input {
        margin-left: 20%;
    }
}

@media (max-width: 700px) {
    .file-input {
        margin-left: 5%;
    }
}

.xmark-div {
    display: none;
    justify-content: end;
    align-items: center;
    flex: auto;
    color: red;
    line-height: 1.875rem;
    border-radius: 6.25rem;
    height: 2.5rem;
    width: 3.75rem;

    margin-right: 0.625rem;

    overflow: hidden;
}

#x-mark {
    transition: transform 0.2s ease;
    transform-origin: center;
    width: 1rem;
    height: 1rem;
    line-height: 1rem;
    -webkit-text-stroke: 0.125rem;
}

#x-mark:hover {
    transform: rotate(90deg);
}

#questionText {
    max-width: 80vw;
}

.file-text {
    margin-left: 1rem;
    color: #7e7f87;
    max-width: 28.125rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

input[type="file"] {
    display: none;
}

.file-div {
    padding-right: 0px;
    text-align: center;
}

.custom-rounded {
    color: #fff;
    border-radius: 6.25rem;
    background-color: #262834;
    border-color: #f6f6f7;
    border-style: solid;
    border-width: 1px;
}

.no-select {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
}

.sub-btn-active {
    width: 18.75rem;
    height: 3.75rem;
    max-width: 100%;
    font-size: 1.25rem;
    border-radius: 3.75rem;
    background-color: #ff6e1b;
    border: none;
    color: #fff;
    transition: background-color 0.5s, border-color 0.5s;
}

.sub-btn-active:hover {
    background-color: rgba(255, 110, 27, 0.686);
    border-color: rgba(255, 110, 27, 0.612);
}

.sub-btn {
    width: 18.75rem;
    height: 3.75rem;
    max-width: 100%;
    font-size: 1.25rem;
    border-radius: 3.75rem;
    background-color: #1c1e27;
    border: none;
    color: #fff;
    transition: background-color 0.5s, border-color 0.5s;
}

.sub-btn:hover {
    background-color: rgb(17, 18, 24);
}
