/*xs*/
@media(max-width: 576px) {
    .rolling-text p {
        -moz-animation: scroll-left 10s linear infinite;
        -webkit-animation: scroll-left 10s linear infinite;
        animation: scroll-left 10s linear infinite;
    }
}
/*md*/
@media (max-width: 992px) {
    .rolling-text p {
        -moz-animation: scroll-left 20s linear infinite;
        -webkit-animation: scroll-left 20s linear infinite;
        animation: scroll-left 20s linear infinite;
    }
}
/*lg*/
@media(max-width: 1200px) {
    .rolling-text p {
        -moz-animation: scroll-left 25s linear infinite;
        -webkit-animation: scroll-left 25s linear infinite;
        animation: scroll-left 25s linear infinite;
    }
}
/*xl*/
@media(min-width: 1200px) {
    .rolling-text p {
        -moz-animation: scroll-left 30s linear infinite;
        -webkit-animation: scroll-left 30s linear infinite;
        animation: scroll-left 30s linear infinite;
    }
}
/*xxl*/
@media (min-width: 1400px) {
    .col-xxl-3 {
        flex: 0 0 auto;
        width: 25%;
    }
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }

    .rolling-text p {
        -moz-animation: scroll-left 15s linear infinite;
        -webkit-animation: scroll-left 15s linear infinite;
        animation: scroll-left 15s linear infinite;
    }
}

html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

.modal {
    height: 90vh;
}

.mw-50 {
    max-width: 50%;
}

.select2-results__option[aria-disabled=true] {
    display: none;
}

.form-control[readonly] {
    background-color: #fff;
}

.cursor-pointer:hover {
    cursor: pointer;
}

.rolling-text {
    height: 2rem;
    overflow: hidden;
    position: relative;
    z-index: 12;
    left: 0;
    right: 0;
}

.empty {
    height: 2.1rem;
}

.nav-treeview > .nav-item .nav-icon {
    margin-left: 10px;
}

.rolling-text p {
    position: absolute;
    font-size: 1.5rem;
    line-height: 1.5rem;
    height: 100%;
    margin: 0;
    white-space: nowrap;
    text-align: center;
    -moz-transform: translateX(100vw);
    -webkit-transform: translateX(100vw);
    transform: translateX(100vw);
}

@-moz-keyframes scroll-left {
    0% {
        -moz-transform: translateX(100vw);
    }

    100% {
        -moz-transform: translateX(-100%);
    }
}

@-webkit-keyframes scroll-left {
    0% {
        -webkit-transform: translateX(100vw);
    }

    100% {
        -webkit-transform: translateX(-100%);
    }
}

@keyframes scroll-left {
    0% {
        -moz-transform: translateX(100vw);
        -webkit-transform: translateX(100vw);
        transform: translateX(100vw);
    }

    100% {
        -moz-transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

.animated {
    overflow: hidden;
    white-space: nowrap;
}

    .animated > span {
        display: inline-block;
        position: relative;
        animation: 3s linear 0s infinite move;
        min-width: 100%;
    }

@keyframes move {
    0%, 25% {
        transform: translateX(0%);
        left: 0%;
    }

    75%, 100% {
        transform: translateX(-100%);
        left: 100%;
    }
}

textarea {
    resize: none;
}
