* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

html, body {
    width: 100%;
    /* height:100%; */
}
  
body {
    background: linear-gradient(-45deg, #FE5858, #EE9617, #F5D020, #FFF);
    background-size: 400% 400%;
    animation: gradient 10s ease infinite;
}
  
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.girl-box {
    min-height: 425px;
    width: 100%;
    padding: 5px;
    position:relative;
    border:2px solid #fff;
}

@media only screen and (max-width: 500px) {
    .girl-box {
        width: 100%;
        height: auto;
    }
}

.vip {
    position: absolute;
    height: 75px;
    width: auto;
}

.vip-top {
    height: 125px;
    width: auto;
}

.girl-card {
    background: #fff;
    width: 100%;
    height: 425px;
    overflow: hidden;
}

img {
    vertical-align: middle;
    border-style: none;
    height: 100%;
    max-width: auto;
}

.number-card {
    background: #181818;
    width: 100%;
    height: 115px;
}

.service-number {
    font-size: 36px;
    color: #EE9617;
}

.agent-name {
    color: #fff;
}

.state {
    color: #fff;
}

.agent-no {
    color: #fff;
}

.online{
    position: absolute;
    top: -2px;
    right: -2px;
    z-index: 998;
    background-color: #000;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: #1ab61a;
    padding: 2px 10px;
    font-size: .9em;
}

.offline{
    position: absolute;
    top: -2px;
    right: -2px;
    z-index: 998;
    background-color: #C61A06;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: #000;
    padding: 2px 10px;
    font-size: .9em;
}