:root 
{
    --main-color: #4F76F9;
    --main-color-light: #E9EEFF;
    --font-size: 15px;
    --text-color: #0E0E0E;
    --font-family: "Manrope", sans-serif;
    --text-color-light: #979797;
    --text-color-full-light: #636363;
    --live-width: 430px;
    --display-heigth: 600px;
    --container-border: #ededed;
    --container-background: #F4F4F4;
    --color-green: #2ECC71;
    --color-red: #F85656;
    --color-red-light: #FFD2D2;
    --color-purple: #7D5FFF;
    --color-purple-light: #F0ECFF;
    --color-orange: #FF9F1A;
    --color-orange-light: #FFE1B7;
    --color-black: #0E0E0E;
    --color-black-light: #414141;
    --color-blue: #4F76F9;
    --color-blue-light: #4F76F9;
}
body, html 
{
    font-family: var(--font-family);
    font-size: var(--font-size);
    color: var(--text-color);
    height: 100%;
    width: 100vw;
}
.master-area {
    width: 100%;
    height: 100%;
}

a 
{
    color: var(--color-action);
    text-decoration: none;
}
a:hover 
{
    color: var(--color-master2);
    text-decoration: none;
}
button, input, select, textarea 
{
    outline: none !important;
}
.color-red
{
    color: var(--color-red);
}
.color-green
{
    color: var(--color-green);
}
.color-purple
{
    color: var(--color-purple);
}
.color-orange
{
    color: var(--color-orange);
}
.color-black
{
    color: var(--color-black);
}
.background-red
{
    background: var(--color-red) !important;
}
.background-green
{
    background: var(--color-green) !important;
}
.background-purple
{
    background: var(--color-purple) !important;
}
.background-orange
{
    background: var(--color-orange) !important;
}
.background-black
{
    background: var(--color-black) !important;
}
.background-blue
{
    background: var(--color-blue) !important;
}

::-webkit-scrollbar 
{
    width: 4px;
    height: 4px;
}
::-webkit-scrollbar-track 
{
    border-radius: 30px;
}
::-webkit-scrollbar-thumb 
{
    -webkit-border-radius: 10px;
    border-radius: 1px;
    background: #c4cace;
}
.container-display
{
    background: url('../../images/surf_blue.png');
    padding: 25px;
}
.container-live
{
    width: var(--live-width);
    margin: auto;
    padding-bottom: 25px;
    text-align: left;
    padding: 25px;
}
.container-display-area
{
    max-width: var(--live-width);
    width: 100%;
    margin: auto;
    padding-top: 20px;
    padding-bottom: 30px;
}
.general-status
{
    display: flex;
    margin-bottom: 35px;
    align-items: center;
    justify-content: center;
}
.general-figure
{
    background: var(--main-color-light);
    width: 110px;
    height: 110px;
    border-radius: 100%;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
}
.general-figure-img
{
    background: url('../../images/water_green.svg');
    background-repeat: no-repeat !important;
    background-position: center !important;
    width: 107px;
    height: 144px;
}

.water{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border-top-right-radius: 0;
    position: relative;
    overflow: hidden;
    transform:rotate(-45deg);
}
.water:before, .water:after{
    content:'';
    position: absolute;
    width:200%;
    height: 200%;
    top: -50%;
    left: 100%;
    background: #fff;
}
.water:before{
    border-radius: 45%;
    background:#fff;
    animation:wave 5s linear infinite;
}
.water:after{
    border-radius: 35%;
    background:rgba(255,255,255,.3);
    animation:wave 5s linear infinite;
}
@keyframes wave{
    0%{
        transform: translate(-50%, -50%) rotate(0);
        top: -30%;
    }
    50%{
    	top: -50%;
    }
    100%{
        transform: translate(-50%, -50%)  rotate(360deg);
        top: -30%;
    }
}



.text-title
{
    font-size: 33px;
    font-weight: 800;
    line-height: 37px;
    margin-bottom: 10px;
}
.general-subtext
{
    text-align: center;
    margin-bottom: 30px;
}
.general-separator
{
    display: flex;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
    opacity: 0.2;
}
.general-separator div
{
    width: 50%;
    height: 1px;
}
.general-separator i 
{
    margin-left: 10px;
    margin-right: 10px;
}
.general-separator div
{
    background: var(--main-color);
}
.general-separator i
{
    color: var(--main-color);
}
.index-box
{
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.text-title2
{
    font-weight: 700;
}
.text-title3
{
    font-weight: 700;
    font-size: 20px;
}
.text-normal2
{
    color: var(--text-color-full-light);
}
.index-box-text
{
    width: 50%;
}
.index-box-chart
{
    width: 50%;
    display: flex;
    justify-content: flex-end;
    padding-left: 15px;
}
.button-link
{
    color: var(--main-color);
    text-decoration: underline;
    margin-top: 5px;
    display: block;
}
.button-link:hover 
{
    color: #2E50C2;
    text-decoration: underline;
}
.text-normal3
{
    color: var(--text-color-light);
}
.index-box-double
{
    display: flex;
    align-items: center;
    line-height: 20px;
    width: 45%;
}
.index-box-double i 
{
    color: var(--main-color);
    background: var(--main-color-light);
    width: 50px;
    height: 50px;
    border-radius: 100%;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    flex-shrink: 0;
}
.index-box.space
{
    display: flex;
    justify-content: space-between;
}
.display-separator
{
    height: 190px;
    width: 1px;
    background: var(--main-color);
    margin-top: -47px;
}
.display-separator i 
{
    background: var(--main-color);
    width: 25px;
    height: 25px;
    border-radius: 100%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -12px;
}
.index-box.with-border
{
    border-bottom: 1px solid var(--container-border);
    margin-bottom: 30px;
    padding-bottom: 30px;
}
.title-center
{
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    margin-bottom: 30px;
    max-width: 265px;
    line-height: 24px;
    margin-left: auto;
    margin-right: auto;
}
.title-left
{
    font-weight: 700;
    font-size: 18px;
    text-align: left;
}
.container-legend
{
    display: flex;
    margin-top: 25px;
    justify-content: left;
}
.container-legend i 
{
    color: #0984E3;
    font-size: 56px;
    padding: 0;
    margin-left: -13px;
}
.container-legend ul 
{
    list-style-type: none;
    padding: 0;
}
.container-info
{
    color: var(--text-color-light);
    background: var(--container-background);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    margin-top: 25px;
}
.container-info b 
{
    display: block;
    color: var(--text-color);
}
.container-info i 
{
    font-size: 25px;
}

.index-box-double.purple i 
{
    color: var(--color-purple);
    background: var(--color-purple-light);
}
.curtain-overlay
{
    background: rgba(14, 14, 14, 0.5);
    width: 100%;
    height: 100%;
    position: fixed;
    display: none;
    z-index: 99;
}
.curtain-overlay.show
{
    display: block;
}
.curtain-scroll
{
    overflow-y: auto;
    height: 90%;
}
.curtain-content
{
    background: #fff;
    width: 100%;
    height: 90%;
    bottom: 0;
    padding: 20px;
    position: fixed;
    border-radius: 20px 20px 0px 0px;
}
.curtain-live
{
    width: calc(var(--live-width) - 80px);
    height: auto;
    margin: auto;
    text-align: left;
}
.curtain-live h1
{
    font-weight: 900;
    font-size: 28px;
    text-align: left;
    line-height: 35px;
    margin-bottom: 25px;
}
.curtain-live h2
{
    font-weight: 700;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.icon-title
{
    display: flex;
    align-items: center;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 15px;
}
.icon-title i 
{
    color: var(--main-color);
    background: var(--main-color-light);
    width: 33px;
    height: 33px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    margin-right: 10px;
}
.curtain-close
{
    font-size: 25px;
}
.curtain-close:hover 
{
    opacity: 0.7
}
.curtain-bar
{
    display: flex;
    justify-content: space-between;
    width: calc(var(--live-width) - 70px);
    margin: auto;
    margin-bottom: 20px;
    align-items: center;
}
.curtain-bar-icon 
{
    background: var(--main-color-light);
    height: 50px;
    width: 50px;
    border-radius: 100%;
    color: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 29px;
}
.carousel-live
{
    display: flex;
    overflow-x: auto;
    padding-bottom: 10px;
    position: relative;
    width: 100%;
}
.carousel-box
{
    display: flex;
    font-weight: 700;
    line-height: 20px;
    width: 352px;
    margin-right: 10px;
    flex-shrink: 0;
}
.carousel-box:hover 
{
    opacity: 0.7;
}
.carousel-img
{
    width: 150px;
    height: 100px;
    background-size: cover !important;
    background-repeat: no-repeat;
    background-position: center !important;
    border-radius: 15px;
    margin-right: 15px;
    flex-shrink: 0;
}
.carousel-box span
{
    color: var(--text-color-light);
    display: block;
    font-size: 13px;
    margin-bottom: 3px;
    font-weight: 400;
}
.carousel-control
{
    display: flex;
    top: 0;
    right: 0;
    font-size: 20px;
    gap: 5px;
    margin-left: auto;
    width: fit-content;
    margin-bottom: 5px;
}
.master-area.red .general-text span
{
    color: var(--color-red);
}
.master-area.red .general-figure-img
{
    background: url('../../images/water_red.svg');
}
.master-area.red .container-display
{
    background: url('../../images/surf_red.png');
}
.master-area.red .general-figure
{
    background: var(--color-red-light);
}
.master-area.red .general-separator div
{
    background: var(--color-red);
}
.master-area.red .general-separator i
{
    color: var(--color-red);
}
.master-area.orange .general-text span
{
    color: var(--color-orange);
}
.master-area.orange .general-figure-img
{
    background: url('../../images/water_orange.svg');
}
.master-area.orange .container-display
{
    background: url('../../images/surf_orange.png');
}
.master-area.orange .general-figure
{
    background: var(--color-orange-light);
}
.master-area.orange .general-separator div
{
    background: var(--color-orange);
}
.master-area.orange .general-separator i
{
    color: var(--color-orange);
}
.button-full
{
    background: var(--main-color);
    border-radius: 22px;
    height: 35px;
    display: flex;
    color: #fff !important;
    align-items: center;
    padding-left: 18px;
    padding-right: 18px;
    width: fit-content;
    margin-top: 6px;
}
.button-full:hover
{
    opacity: 0.7
}
.button-full i 
{
    margin-right: 5px;
}
.company-display
{
    display: flex;
    margin-top: 15px;
    margin-bottom: 15px;
    align-items: center;
}
.company-display-name
{
    font-weight: 700;
}
.company-display-image
{
    width: 80px;
    height: 80px;
    border-radius: 10px;
    border: 1px solid var(--container-border);
    flex-shrink: 0;
    margin-right: 15px;
}
.company-tags
{
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 10px;
}
.company-tags div 
{
    color: var(--text-color-light);
    display: flex;
    align-items: center;
    gap: 5px;
}
.company-contacts
{
    margin-top: 25px;
}
.company-contact-box
{
    display: flex;
    width: 100%;
    border-top: 1px solid var(--container-border);
    padding-top: 20px;
    margin-bottom: 20px;
}
.company-contact-box div 
{
    width: 100%;
}
.company-contact-box div:last-child
{
    color: var(--text-color-light);
    border-left: 1px solid var(--container-border);
    padding-left: 20px;
    margin-left: 20px;
}
.chart-progress-content
{
   width: 100%; 
}
.chart-progress
{
    background: #DADADA;
    width: 100%;
    height: 10px;
    display: block;
    border-radius: 20px;
    position: relative;
}
.chart-progress-move
{
    width: 100%;
    transition: width 5s ease-in-out;
}
.chart-progress-move
{
    width: 100%;
    border-radius: 20px 0px 0px 20px;
    height: 100%;
}
.chart-progress-label
{
    font-weight: 700;
    text-align: right;
    margin-top: 7px;
}
.chart-progress .ruler
{
    width: 1px;
    height: 20px;
    background: #676763;
    position: absolute;
    top: -10px;
}
.chart-progress .ruler div 
{
    font-size: 13px;
    margin-top: -19px;
    margin-left: -3px;
}
.chart-progress .ruler.star div
{
    font-size: 18px;
    font-weight: 700;
    margin-top: -25px;
}
.chart-tube-content
{
   height: 100%;
}
.chart-tube
{
    background: #DADADA;
    width: 20px;
    height: 100px;
    /* display: block; */
    border-radius: 0px 0px 20px 20px;
    position: relative;
    display: flex;
    align-items: end;
}
.chart-tube-move
{
    width: 100%;
}
.chart-tube-move
{
    width: 100%;
    border-radius: 0px 0px 20px 20px;
    height: 100px;
}
.chart-tube-label
{
    font-weight: 700;
    text-align: right;
    margin-top: 7px;
}
.chart-tube .ruler
{
    width: 30px;
    height: 1px;
    background: #676763;
    position: absolute;
    /* top: -10px; */
}
.chart-tube .ruler div 
{
    font-size: 13px;
    margin-top: -8px;
    margin-left: 33px;
}
.chart-tube .ruler.star div
{
    font-size: 18px;
    font-weight: 700;
    margin-top: -15px;
    line-height: 18px;
}
.index-box.tube .index-box-chart 
{
    width: 33%;
    height: 100%;
}
.index-box.tube .index-box-text
{
    width: 50%;
}

@media (max-width: 768px) {
    .container-live {
        width: auto;
    }
}