.slider-container {
    height: 100vh;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    display: none;
    overflow: hidden;
}
.slider-container.active {
    display: block;
    z-index: 480;
}
.slider-container.active .bg-modal {
    display: block;
}
.slider-container .slider-items {
    width: 80%;
    height: 100%;
    margin: 0 auto;
    position: relative;
}
.slider-container .bg-modal {
    display: none;
    opacity: 0.9;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 500;
}
.slider-container .bg-modal.black {
    background: #000;
}
.slider-container .bg-modal .icon-close {
    position: absolute;
    top: 5%;
    left: 95%;
    height: 28px;
    width: 28px;
    z-index: 1000;
    fill: #fff;
    cursor: pointer;
}
.slider-inst.popur {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 981;
    opacity: 0;
    transition: 0.1s ease;
}
.slider-inst.popur.slider-active {
    display: grid;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    transition: 0.7s ease, opacity 0.1s ease;
    z-index: 9999;
}
@media screen and (max-width: 768px) {
    .slider-inst.popur.slider-active {
        transform: translate(-50%, -50%);
        transition: 0.7s ease;
    }
}
.slider-inst.popur.slider-prev {
    display: grid;
    opacity: 1;
    left: 25%;
    transform: translate(-50%, -50%) scale(0.5);
    transition: 0.7s ease, opacity 0.1s ease;
}
@media screen and (max-width: 768px) {
    .slider-inst.popur.slider-prev {
        left: -50%;
        transform: translate(-50%, -50%) scale(1);
        transition: 0.7s ease;
    }
}
.slider-inst.popur.slider-next {
    display: grid;
    opacity: 1;
    left: 75%;
    transform: translate(-50%, -50%) scale(0.5);
    transition: 0.7s ease, opacity 0.1s ease;
}
@media screen and (max-width: 768px) {
    .slider-inst.popur.slider-next {
        left: 150%;
        transform: translate(-50%, -50%) scale(1);
        transition: 0.7s ease;
    }
}
.slider-inst.popur .slide-items {
    z-index: 980;
}
.slider-inst.popur .slide-nav {
    z-index: 1000;
    height: 100%;
}
@media screen and (max-width: 768px) {
    .slider-inst.popur {
        width: 100%;
        height: 100%;
        opacity: 1;
    }
}
.slide {
    height: 95%;
    width: 400px;
    margin: 20px auto;
    display: grid;
    box-shadow: 0 4px 10px 2px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}
.slide-items {
    position: relative;
    grid-area: 1/1;
    border-radius: 8px;
    overflow: hidden;
    background-color: inherit;
}
.slide-items .item {
    position: absolute;
    top: 0px;
    opacity: 0;
    pointer-events: none;
    object-fit: cover;
    width: 100%;
    height: 100%;
    min-height: 95vh;
    min-width: 55vh;
    max-height: 95vh;
    max-width: 55vh;
    background: gray;
}
.slide-items .item.active {
    position: relative;
    opacity: 1;
    pointer-events: initial;
}
.slide-items .item.video video {
    width: 100%;
}
@media screen and (max-width: 768px) {
    .slide-items .item.video video {
        height: 100%;
        object-fit: cover;
    }
}
.slide-items .item.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slide-items .item.text {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slide-items .item.text.big {
    font-size: 32px;
}
.slide-items .item.text.white {
    color: #fff;
}
@media screen and (max-width: 768px) {
    .slide-items .item {
        min-height: 100vh;
        min-width: 100vw;
        max-height: 100vh;
        max-width: 100vw;
    }
}
@media screen and (max-width: 768px) {
    .slide-items {
        border-radius: 0;
    }
}
.slide-nav {
    grid-area: 1/1;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto 1fr;
}
.slide-nav button {
    -webkit-appearance: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    opacity: 0;
    margin-bottom: 0;
    border-bottom: 0;
    cursor: pointer;
}
.slide-thumb {
    margin: 10px;
    margin-bottom: 0;
    display: flex;
    grid-column: 1/3;
}
.slide-thumb .item {
    flex: 1;
    display: block;
    height: 3px;
    background: rgba(0, 0, 0, 0.2);
    margin: 3px;
    border-radius: 3px;
    overflow: hidden;
}
.slide-thumb .item.viewed {
    background: rgba(255, 255, 255, 0.9);
}
.slide-thumb .item.active::after {
    content: attr(data-time-duration);
    display: block;
    height: inherit;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 3px;
    transform: translateX(100%);
    animation: thumb 5000ms forwards linear;
}
.slide-menu {
    margin: 10px;
    margin-bottom: 0;
    display: flex;
    grid-column: 1/3;
    align-items: center;
    color: #fff;
}
.slide-menu .menu__name {
    font-size: 14px;
    font-weight: 600;
	color: #FFF;
}
.slide-menu .menu__img {
    height: 32px;
    width: 32px;
    object-fit: cover;
    margin-left: 10px;
    border-radius: 100%;
    text-align: center;
    line-height: 32px;
}
.slide-header {
    z-index: 999;
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(38, 38, 38, 0.3) 0%, rgba(38, 38, 38, 0) 15%);
    border-radius: 8p;
}
@media screen and (max-width: 768px) {
    .slide {
        width: 100%;
        border-radius: 0;
    }
}
.history {
    position: relative;
    align-items: center;
    flex-direction: column;
    
}
.history-container {
    padding: 20px;
    border-radius: 5px;
    overflow-y: hidden;
    overflow-x: auto;
}
.history-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
}
@media screen and (max-width: 768px) {
    .history-container {
        justify-content: space-between;
    }
}
.history:not(:last-child) {
    margin-right: 30px;
}
.history .history__img {
    height: 64px;
    width: 64px;
    border-radius: 50%;
    text-align: center;
    line-height: 56px;
    font-weight: 500;
}
.history .history__title {
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    text-align: center;
}
.history .border-img {
    position: absolute;
    height: 64px;
    width: 64px;
}
@keyframes thumb {
    to {
        transform: initial;
    }
}


.circle{
  width:90px;
  height:90px;
  position: relative;
}
.circle svg{
    fill:none;
    stroke:#8a3ab9;
    stroke-linecap: round;
    stroke-width:3;
    stroke-dasharray: 1;
    stroke-dashoffset: 0;
    animation: stroke-draw 6s ease-out infinite alternate; 
    /*animation: stroke-draw 6s cubic-bezier(0.77, 0, 0.175, 1) infinite alternate; */
  }
.circle img{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%, -50%);
    width:70px;
    border-radius:50%;

}
/*#bdbdbd*/
@keyframes stroke-draw {
  from{
    stroke:#8a3ab9;
    stroke-dasharray: 1;
  }
  to{
    stroke:#cd486b;
    transform:rotate(180deg);
    stroke-dasharray: 8;
  }
}
@media screen and (max-width: 768px) {
	.slider-container .bg-modal.black{
		z-index: 10000;
		background: transparent;
		height: auto;
		width: auto;
		top: 20px;
		left: 15px;
	}
	.slider-container .bg-modal .icon-close{
		left: 5%;
		background: #5a5a5a;
		border-radius: 5px;
		z-index: 10001;
	}


}