/* Copy Animation */
.base-color{
  color: hsl(var(--main)) !important;
}

  .copyInput {
	display: inline-block;
	line-height: 50px;
	position: absolute;
	top: 0;
	right: 0;
	width: 40px;
	text-align: center;
	font-size: 14px;
	cursor: pointer;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
  }
  
  .copied::after {
	position: absolute;
	top: 8px;
	right: 12%;
	width: 100px;
	display: block;
	content: "COPIED";
	font-size: 1em;
	padding: 5px 5px;
	color: #fff;
	background-color: #FF7000;
	border-radius: 3px;
	opacity: 0;
	will-change: opacity, transform;
	animation: showcopied 1.5s ease;
  }
  
  @keyframes showcopied {
	0% {
		opacity: 0;
		transform: translateX(100%);
	}
	50% {
		opacity: 0.7;
		transform: translateX(40%);
	}
	70% {
		opacity: 1;
		transform: translateX(0);
	}
	100% {
		opacity: 0;
	}
  }




  .cookies-card {
	width: 520px;
	padding: 30px;
	color: #ffffff;
	position:  fixed;
	bottom: 15px;  
	left: 15px;
	z-index: 999999;
	transition: all .5s;
	background: #002550;
    border-radius: 5px;
  }
  
  .cookies-card.hide{
	bottom: -500px !important;
  }
  .radius--10px {
	border-radius: 10px;
  }
  
  .cookies-card__icon {
	width: 55px;
	height: 55px;
	border-radius: 50%;
	background-color: #6e6f70;
    color: #fff;
	font-size: 32px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
  }
  
  .cookies-card__content {
	margin-bottom: 0;
  }
  
  .cookies-btn {
	color: #363636;
	text-decoration: none;
	padding: 10px 35px;
	margin: 3px 5px;
	display: inline-block;
	border-radius:  999px;
  }
  
  .cookies-btn:hover {
	color: #363636;
  }

  
  @media (max-width: 767px) {
	  .cookies-card {
		  width:  100%;
		  left: 0;
		  bottom:  0;
		  font-size:  14px;
		  padding:  15px;
	  }
  }




.hover-input-popup {
        position: relative;
    }
    .input-popup {
        display: none;
    }
    .hover-input-popup .input-popup {
        display: block;
        position: absolute;
        bottom: 130%;
        left: 50%;
        width: 280px;
        background-color: #1a1a1a;
        color: #fff;
        padding: 20px;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
    }
    .input-popup::after {
        position: absolute;
        content: '';
        bottom: -19px;
        left: 50%;
        margin-left: -5px;
        border-width: 10px 10px 10px 10px;
        border-style: solid;
        border-color: transparent transparent #1a1a1a transparent;
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    .input-popup p {
        padding-left: 20px;
        position: relative;
    }
    .input-popup p::before {
        position: absolute;
        content: '';
        font-family: 'Line Awesome Free';
        font-weight: 900;
        left: 0;
        top: 4px;
        line-height: 1;
        font-size: 18px;
    }
    .input-popup p.error {
        text-decoration: line-through;
    }
    .input-popup p.error::before {
        content: "\f057";
        color: #ea5455;
    }
    .input-popup p.success::before {
        content: "\f058";
        color: #28c76f;
    }



 .show-filter{
  display: none;
}
@media(max-width:767px){
  .responsive-filter-card{
      display: none;
      transition: none;
  }
  .show-filter{
      display: block;
  }
}

/* ############################################################################################################################## */
  .sleep-wrapper {
    z-index: 999;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
  }

  .sleep-wrapper::-webkit-scrollbar {
    width: 0;
    background: transparent;
  }

  .sleep-wrapper__thumb {
    position: absolute;
    left: -5%;
    top: -5%;
    filter: blur(15px);
    width: 110%;
    height: 110%;
    z-index: -1;
    right: -5%;
    bottom: -5%;
  }

  .sleep-wrapper__thumb::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #000000;
    z-index: -1;
  }

  .sleep-wrapper__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .avatar {
    display: flex;
    flex-direction: column;
    position: absolute;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .avatar__icon {
    width: 200px;
    height: 200px;
    background-color: #ffffff24;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 100px;
    border-radius: 50%;
    color: #fff;
  }

  @media (max-width: 767px) {
    .avatar__icon {
        width: 150px;
        height: 150px;
        font-size: 70px;
    }
  }

  @media (max-width: 575px) {
    .avatar__icon {
        width: 120px;
        height: 120px;
        font-size: 50px;
    }
  }

  .avatar__title {
    margin-top: 20px;
    color: #fff;
    margin-bottom: 10px;
  }

  .sleep__button {
    background-color: #ffffff36;
    padding: 4px 30px;
    color: #fff;
    font-size: 15px;
    border-radius: 5px;
    border: 2px solid transparent;
    transition: .1s linear;
    font-size: 15px;
  }

  .sleep__button:hover,
  .sleep__button:focus {
    border: 2px solid #ffffff30 !important;
  }

  .avatar__content {
    text-align: center;
  }

  /* ==================================================================================== */
  /* ==================================  Clock Start ==================================== */
  /* ==================================================================================== */
  .clock {
    color: #fff;
    font-size: 16px;
    letter-spacing: 2px;
    line-height: 1
  }

  /* ==================================================================================== */
  /* ==================================  Clock End ====================================== */
  /* ==================================================================================== */


  /* ==================================================================================== */
  /* ==================================  Dropdown Start ================================= */
  /* ==================================================================================== */
  .sleep-bottom__menu {
    margin-left: 15px;
  }

  .sleep-bottom {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .sleep-bottom-menu__button {
    background-color: #ffffff29;
    border: 0;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    color: #ffffffc7;
  }

  .sleep-bottom-menu__button.dropdown-toggle::after {
    display: none;
  }

  .sleep-bottom-dropdown {
    background-color: #0e0e0ea8;
    padding: 10px;
    border-radius: 5px;
    border: 0;
  }

  .sleep-bottom-dropdown .dropdown-item {
    color: #ffffffc7;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 15px;
  }

  .sleep-bottom-dropdown .dropdown-item__icon {
    font-size: 13px;
    margin-right: 3px;
  }

  .sleep-bottom-dropdown .dropdown-item:hover,
  .sleep-bottom-dropdown .dropdown-item:focus {
    background-color: #ffffff1a;
  }

  /* ==================================================================================== */
  /* ==================================  Dropdown End =================================== */
  /* ==================================================================================== */
  a:hover{
    cursor: pointer;
  }
  .flex_space{
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .bg--fff{
    background-color: #ffffff !important;
  }

  /* NAV-BAR */
  .header-dropdown{
    display: flex;
    align-items: center;
  }
  .header-dropdown .dropdown-menu{
    box-shadow: 0px 5px 26px -5px #cdd4e7 !important;
    width: 220px;
    z-index: 999;
    right: 0;
    left: unset;
  }
  .header-dropdown .dropdown-menu a{
    color: #373e4a !important;
  }
  .header-dropdown img{
    border-radius: 50%;
    width: 40px;
    height: 40px;
  }
  .user_nav{
    padding: 0px !important;
  }
  .dropdown-menu__item{
    padding: 10px !important;
    border-bottom: 1px solid #e5e5e5;
  }
  .dropdown-menu__item i{
    margin-right: 5px !important;
  }
  .dropdown-head{
    font-size: 14px; 
  }
  .dropdown-menu__caption{
    font-weight: 600;
  }

  .navbar-user{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .navbar-user_about{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .navbar-user__thumb, .navbar-user__info{
    margin-right: 6px;
  }
  a.dropdown-menu__item{
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  a.dropdown-menu__item:hover{
    background-color: rgba(69, 130, 255, 0.05);
  }
  @media only screen and (max-width: 1200px) {
    .header-dropdown{
        display: block;
    }
    .user_nav{
        padding: 7px 0px !important;
    }
    .header-dropdown .dropdown-menu{
        width: 100%;
    }
  }

  /* TABLE */
  .custom--table thead th{
    background-color: var(--color_2);
  }
/* ############################################################################################################################## */


.custom--card, .d-widget {
    border-radius: 15px;
}