.button-loader {
    border: 5px solid #f3f3f3;
    border-radius: 50%;
    border-top: 5px solid var(--primary-color);
    width: 25px;
    height: 25px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

.button-loader.success {
    border-top: 5px solid var(--success-color);
}

.button-loader.table {
    border-top: 5px solid var(--black-color);
}

.button-loader.grey {
    border-top: 5px solid var(--dark-color);
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

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

.page-content {
    margin-top: 50px;
    margin-left: 25px;
    margin-right: 25px;
    margin-bottom: 50px;
    min-height: 200px;
}

.form-content {
    margin-top: 50px;
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom: 50px;
    min-height: 200px;
}

@media (max-width: 500px) {
    .page-content {
        margin-left: 5px;
        margin-right: 5px;
    }

    .form-content {
        margin-left: 15px;
        margin-right: 15px;
    }
}

@media (min-width: 1200px) {
    .page-content {
        margin-left: 50px;
        margin-right: 50px;
    }

    .form-content {
        margin-left: 200px;
        margin-right: 200px;
    }
}

.page-title {
    font-size: 30px;
    text-align: center;
    margin-bottom: 25px;
}

.table-icon-button {
    cursor: pointer;
    color: white;
}

.table-icon-button:hover {
    color: var(--primary-color);
}

.gen-button.danger {
    background-color: var(--danger-color);
}

.gen-button.success {
    background-color: var(--success-color);
}

.admin-panel-box {
    height: 100px;
    background-color: var(--black-color);
    text-align: center;
    border-radius: 10px;
    box-shadow: black 2px 2px;
}

.admin-panel-box:hover {
    background-color: var(--primary-color);
}

.admin-panel-icon {
    padding-top: 20px;
    color: white;
}

.admin-panel-text {
    color: white;
}

.gen-button {
    box-shadow: black 2px 2px;
}

.section-padding {
    padding: 50px 0px 50px 0px;
}

.gen-button:hover {
    background-color: darkorange;
}

.gen-button.danger:hover {
    background-color: darkred;
}

.gen-button.success:hover {
    background-color: darkgreen;
}

.modal {
    display: none;
    position: fixed;
    z-index: 10;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: var(--dark-color);
    margin: auto auto 30px auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

.close-modal {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-modal:hover,
.close-modal:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.input-box-image {
    width: 100%;
    height: 230px;
    border-width: 2px;
    border-style: dashed;
    background-color: var(--black-color);
    margin-bottom: 20px;
    text-align: center;
    border-radius: 10px;
}

.input-box-image:hover {
    cursor: pointer;
}

.dragleave {
    border-color: var(--secondary-color);
}

.dragover {
    border-color: var(--primary-color);
}

.primary-color {
    color: var(--primary-color);
}

.table-loader-container {
    display: block;
    margin-top: 15px;
}

.main-loader-animation,
.main-loader-animation:before,
.main-loader-animation:after {
    background: var(--primary-color);
    -webkit-animation: load1 1s infinite ease-in-out;
    animation: load1 1s infinite ease-in-out;
    width: 1em;
    height: 4em;
}
.main-loader-animation {
    color: var(--primary-color);
    text-indent: -9999em;
    margin: 40px auto;
    position: relative;
    font-size: 7px;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}
.main-loader-animation:before,
.main-loader-animation:after {
    position: absolute;
    top: 0;
    content: "";
}
.main-loader-animation:before {
    left: -1.5em;
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}
.main-loader-animation:after {
    left: 1.5em;
}
@-webkit-keyframes load1 {
    0%,
    80%,
    100% {
        box-shadow: 0 0;
        height: 4em;
    }
    40% {
        box-shadow: 0 -2em;
        height: 5em;
    }
}
@keyframes load1 {
    0%,
    80%,
    100% {
        box-shadow: 0 0;
        height: 4em;
    }
    40% {
        box-shadow: 0 -2em;
        height: 5em;
    }
}

.video-action-button {
    color: #fff;
    cursor: pointer;
}

.video-action-button:hover {
    color: var(--primary-color);
}

.image-view-border {
    border-style: solid;
}

.image-view-container {
    padding: 10px;
}

.user-menu-logo {
    background-color: var(--primary-color);
    padding: 10px 12px;
    border-radius: 50%;
    box-shadow: black 1px 1px;
}

.qoute-text {
    padding-left: 10px;
    border-left-color: var(--primary-color);
    border-left-style: solid;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
}

.video-play-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 1250px;
    margin-top: 50px;
    background-color: var(--dark-color);
    padding-top: 30px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 10px;
}

@media (max-width: 1300px) {
    .video-play-container {
        margin-left: 25px;
        margin-right: 25px;
    }
}

.video-play-background-image {
    background: url("/images/books-background.jpg");
    background-attachment: fixed;
}

.video-play-content-container {
    padding-left: 50px;
    padding-right: 50px;
}

.user-data-data {
    padding-left: 10px;
    font-weight: 700;
}

.gen-button:hover {
    background-color: darkorange !important;
}

.single-package-title {
    text-align: center;
    font-size: 30px;
    font-weight: 800;
    color: white;
}

.single-package-description {
    text-align: center;
    color: white;
}

.one-package-discount-box {
    background-color: var(--primary-color);
    top: 10px;
    right: 0px;
    position: absolute;
    z-index: 10;
    padding: 5px 10px;
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
}

.original-price {
    font-size: 25px;
}

.swiper-slide {
    height: auto !important;
}

.one-package-button {
    bottom: 0px;
}

.one-package-price-footer {
    border-top-color: white;
    border-top-style: dotted;
    border-top-width: 1px;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 0px;
    position: absolute;
    bottom: 0px;
}

.one-package-price-header {
    border-bottom-style: dotted;
    border-bottom-color: white;
    border-bottom-width: 1px;
    height: 185px;
}

.one-package-price-description {
    padding-bottom: 100px;
}

.gen-button {
    cursor: pointer;
    border-radius: 7px;
}

.one-package-price-box {
    position: relative;
    height: 100%;
    box-shadow: black 2px 2px;
    background-color: var(--dark-color);
    border-radius: 9px;
}

.package-background {
    background-image: url("/images/arena_original.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
}

.package-overview-color {
    background-color: rgba(51, 32, 7, 0.712);
}

.video-categorie-box {
    padding: 5px 10px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
    border-color: white;
    border-width: 1px;
    border-style: solid;
}

.video-categorie-box.selected {
    background-color: white;
    color: black;
}

.video-categorie-box.selected:hover {
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
}

.video-categorie-box.unselected {
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
}

.video-categorie-box.unselected:hover {
    background-color: white;
    color: black;
}

.video-categories-filter {
    width: 100%;
}

.filters-select-button {
    background-color: white;
    color: black;
    padding: 1px 8px;
    margin: 10px;
    border-radius: 10px;
    cursor: pointer;
    border-color: white;
    border-width: 1px;
    border-style: solid;
}

.filters-select-button:hover {
    background-color: transparent;
    color: white;
}

.filters-title {
    color: white;
    font-size: 17px;
    font-weight: 700;
}

.categorie-box {
    background-color: #626262;
    padding: 10px;
    border-radius: 12px;
    box-shadow: black 2px 2px;
    height: 100%;
}

.categorie-button {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    position: absolute;
    bottom: 0px;
}

.custom-row {
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
}

.custom-column {
    flex: 25%;
    max-width: 25%;
    padding: 0 4px;
}

.custom-box {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
}

.no-videos {
    background-color: var(--black-color);
    margin: 30px;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
}

.footer-book-title {
    color: white;
}

.register-original-price {
    text-align: center;
    text-decoration: line-through;
}

.register-discounted-price {
    text-align: center;
    font-size: 25px;
    font-weight: 700;
    color: white;
}

.register-price-time {
    text-align: center;
    font-weight: 700;
    color: white;
}

.register-price-description {
    text-align: center;
}

.register-price-box {
    border-radius: 12px;
    height: 100%;
    box-shadow: black 2px 2px;
}

.register-price-box.active {
    background-color: var(--primary-color);
}

.register-price-box.unactive {
    background-color: var(--black-color);
}

.register-price-box:hover {
    background-color: var(--primary-color);
    cursor: pointer;
}

.register-shipping-address-label {
    font-size: 12px;
}

.register-shipping-address-data {
    padding-left: 5px;
    color: white;
}

.cookies-decline-button {
    border-radius: 8px;
    background-color: red;
    border-color: orange;
    color: white;
}

.cookies-accept-button {
    border-radius: 8px;
    background-color: green;
    border-color: greenyellow;
    color: white;
}

.privacy-link {
    color: var(--primary-color);
    cursor: pointer;
}
