﻿@import url('open-iconic-bootstrap.min.css');
@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,300;0,400;0,500;0,600;1,200;1,300;1,400;1,500&display=swap');
.op-slide {
    opacity: 1 !important;
    transform-style: preserve-3d !important;
}
.checkbox_wrap.test2 {
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX( 0deg ) rotateY( 0deg ) rotateZ( 0deg ) skew( 0deg, 0deg ) !important;
    transform-style: preserve-3d !important;
    opacity: 1 !important;
}

html, body {
    font-family: 'Kanit', sans-serif;
}

a, .btn-link {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.content {
    padding-top: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.track-vertical {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee-vertical 20s linear infinite;
    /* manipulate the speed of the marquee by changing "20s" line above*/
}

@keyframes marquee-vertical {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-50%);
    }
}

.track-vertical-alt {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee-vertical-alt 20s linear infinite;
    /* manipulate the speed of the marquee by changing "20s" line above*/
}

@keyframes marquee-vertical-alt {
    from {
        transform: translateY(-50%);
    }

    to {
        transform: translateY(0%);
    }
}

.bx-viewport, .bx-wrapper {
    background: none;
    border: none;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    max-width: none !important;
}

.bx-viewport {
    padding: 0px 0 0px 0;
}


.ranking {
    width: 100%;
    float: left;
    background-color: #F6F9FB;
    margin-top: 22px;
    padding: 5px 10px;
    box-sizing: border-box;
}

.ranking-stars {
    float: left;
}

.ranking-star {
    display: inline-block;
    position: relative;
    color: #44ABEA;
}

    .ranking-star:before {
        content: "☆☆☆☆☆";
    }

.ranking-score {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 101;
    overflow: hidden;
}

    .ranking-score:after {
        content: "★★★★★";
        color: #44ABEA;
    }
.text-center{
    text-align:center;
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

.spinner-border {
    color: #0b2a8a;
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border .75s linear infinite;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
}

@keyframes spinner-grow {
    0% {
        transform: scale(0);
    }

    50% {
        opacity: 1;
    }
}

.spinner-grow {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    background-color: currentColor;
    border-radius: 50%;
    opacity: 0;
    animation: spinner-grow .75s linear infinite;
}

.spinner-grow-sm {
    width: 1rem;
    height: 1rem;
}
