*{
    padding: 0;
    margin: 0;
}
body{
    color: #414141 !important;
    letter-spacing: 0.05em;
    font-size: 16px;
}
img{
    object-fit: cover;
}
::placeholder{
    color: #999;
}
a{
    text-decoration: none;
    color: #000;
}
a:hover{
    text-decoration: none;
}
button:focus {
     outline: none; 
     outline: none; 
}
.wrapper{
    width: 100%;
    height: auto;
    overflow: hidden;
}
.custom-header{
    background: #fff;
}
.custom-header .nav-item{
    margin-left: 20px;
}
.custom-header .nav-item a{
    font-size: 16px;
}
.custom-header .nav-item.active a{
    color: #379c58 !important;
}
.form-control{
    height: 45px;
}
.form-control:focus{
    border-color: #5763de59;
    box-shadow: 0 0 0 0.2rem rgb(87 99 222 / 13%);
}
.btn.focus, .btn:focus{
    box-shadow: 0 0 0 0.2rem rgb(87 99 222 / 13%);
}
.custom-navbar{
    padding: 15px 0;
    position: fixed;
    background: #fff;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
}
.custom-btn{
    background: #379c58;
    /*background: linear-gradient(90deg, rgba(235,39,141,1) 0%, rgba(213,39,235,1) 35%, rgba(98,90,254,1) 100%);*/
    color: #fff;
    border-radius: 20px;
    /*font-weight: 600;*/
    box-shadow: 4px 10px 25px rgba(43, 77, 151, 0.15);
    transition: 0.4s ease all;
    padding: 5px 20px;
}
.custom-btn:hover{
    box-shadow: 0px 2px 20px rgb(43 77 151 / 50%);
    color: #fff;
}
.custom-btn-outline{
    background: transparent;
    border: 1px solid #379c58;
    color: #414141;
    border-radius: 20px;
    /*box-shadow: 4px 10px 25px rgba(43, 77, 151, 0.15);*/
    transition: 0.4s ease all;
    padding: 5px 20px;
}
.custom-btn-outline:hover{
    background: #379c58;
    box-shadow: 0px 2px 20px rgb(43 77 151 / 50%);
    color: #fff;
    /*font-weight: 600;*/
}
.custom-search{
    position: relative;
}
.custom-search input{
    border-radius: 20px;
    background-color: #eee;
    border-color: transparent;
    width: 100%;
    padding: 0 45px;
}
.custom-search i{
    position: absolute;
    top: 15px;
    left: 20px;
    color: #666;
}
.header-icons i{
    font-size: 25px;
    margin-right: 5px;
    color: #625AFE;
    background-color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
    transition: 0.4s ease all;
}
.header-icons i:hover{
    background-color: #eee;
}

/*masonry*/
.card {
  background: #fff;
  border-radius: 20px;
  border: none;
  /*min-height: 20ch;*/
  display: inline-block;
}
.card img{
    border-radius: 20px;
    background: #eee;
    box-shadow: 0 0 0 1px rgba(0,0,0,.08);
}
.img-box{
    background-color: #fff;
    padding: 10px;
}
.img-box p{
    color: #595959;
    font-weight: bold;
}
.img-box p span{
    width: 30px;
    height: 30px;
    background-color: #eee;
    border-radius: 50%;
    display: inline-block;
}
.reactions a{
    color: #595959;
}
/*.reactions a i{*/
/*    color: #5763DE;*/
/*}*/
.fa-thumbs-up{
    color: #2196f3;
}
.uil-comment-dots{
    color: #cddc39;
}
.uil-eye{
    color: #007bff;
}
.card-img{
    position: relative;
}
.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: rgba(0,0,0,0.5);
  border-radius: 20px;
}
.card-img:hover .overlay {
  opacity: 1;
}
select{
    height: 45px !important;
}

/*share*/
::selection{
  color: #fff;
  background: #7d2ae8;
}
.popup{
  position: fixed;
  left: 50%;
}
button{
  outline: none;
  cursor: pointer;
  font-weight: 500;
  border-radius: 4px;
  border: 2px solid transparent;
  transition: background 0.1s linear, border-color 0.1s linear, color 0.1s linear;
}
.view-modal{
  position: absolute;
  bottom: -10px;
  right: -23px;
  font-size: 18px;
  padding: 10px 15px;
  background: #fff;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
/*.modal-backdrop.show{*/
/*    display: none;*/
/*}*/
.popup{
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  top: -150%;
  max-width: 380px;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0px 10px 15px rgba(0,0,0,0.1);
  transform: translate(-50%, -50%) scale(1.2);
  transition: top 0s 0.2s ease-in-out,
              opacity 0.2s 0s ease-in-out,
              transform 0.2s 0s ease-in-out;
}
.popup.show{
  top: 50%;
  opacity: 1;
  pointer-events: auto;
  transform:translate(-50%, -50%) scale(1);
  transition: top 0s 0s ease-in-out,
              opacity 0.2s 0s ease-in-out,
              transform 0.2s 0s ease-in-out;
}
.popup :is(header, .icons, .field){
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.popup header{
  padding-bottom: 15px;
  border-bottom: 1px solid #ebedf9;
}
header span{
  font-size: 21px;
  font-weight: 600;
}
header .close, .icons a{
  display: flex;
  align-items: center;
  border-radius: 50%;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
header .close{
  color: #878787;
  font-size: 17px;
  background: #f2f3fb;
  height: 33px;
  width: 33px;
  cursor: pointer;
}
header .close:hover{
  background: #ebedf9;
}
.popup .content{
  margin: 20px 0;
}
.popup .icons{
  margin: 15px 0 20px 0;
  padding: 0 30px;
}
.content p{
  font-size: 16px;
}
.content .icons a{
  height: 50px;
  width: 50px;
  font-size: 20px;
  text-decoration: none;
  border: 1px solid transparent;
  display: inline-flex;
}
.icons a i{
  transition: transform 0.3s ease-in-out;
}
.icons a:nth-child(1){
  color: #1877F2;
  border-color: #b7d4fb;
}
.icons a:nth-child(1):hover{
  background: #1877F2;
}
.icons a:nth-child(2){
  color: #46C1F6;
  border-color: #b6e7fc;
}
.icons a:nth-child(2):hover{
  background: #46C1F6;
}
.icons a:nth-child(3){
  color: #e1306c;
  border-color: #f5bccf;
}
.icons a:nth-child(3):hover{
  background: #e1306c;
}
.icons a:nth-child(4){
  color: #25D366;
  border-color: #bef4d2;
}
.icons a:nth-child(4):hover{
  background: #25D366;
}
.icons a:nth-child(5){
  color: #0088cc;
  border-color: #b3e6ff;
}
.icons a:nth-child(5):hover{
  background: #0088cc;
}
.icons a:hover{
  color: #fff !important;
  border-color: transparent !important;
}
.icons a:hover i{
  transform: scale(1.2);
}

.icons .facebook{
  color: #1877F2 !important;
  border-color: #b7d4fb !important;
}
.icons .facebook:hover{
  background: #1877F2 !important;
}
.icons .twitter{
  color: #46C1F6 !important;
  border-color: #b6e7fc !important;
}
.icons .twitter:hover{
  background: #46C1F6 !important;
}
.icons .instagram{
  color: #e1306c !important;
  border-color: #f5bccf !important;
}
.icons .instagram:hover{
  background: #e1306c !important;
}
.icons .whatsapp{
  color: #25D366 !important;
  border-color: #bef4d2 !important;
}
.icons .whatsapp:hover{
  background: #25D366 !important;
}

.content .field{
  margin: 12px 0 -5px 0;
  height: 45px;
  border-radius: 4px;
  padding: 0 5px;
  border: 1px solid #e1e1e1;
}
.field.active{
  border-color: #7d2ae8;
}
.field i{
  width: 50px;
  font-size: 18px;
  text-align: center;
}
.field.active i{
  color: #7d2ae8;
}
.field input{
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  font-size: 15px;
}
.field button{
  color: #fff;
  padding: 5px 18px;
  background: #7d2ae8;
}
.field button:hover{
  background: #8d39fa;
}

/*autofill search*/
.custom-search .autocom-box{
  padding: 0;
  opacity: 0;
  pointer-events: none;
  max-height: 280px;
  overflow-y: auto;
}
.custom-search.active{
    position: absolute;
    background: #fff;
    width: 100%;
    border-radius: 20px;
}
.custom-search.active .autocom-box{
  padding: 10px 0px;
  opacity: 1;
  pointer-events: auto;
}

.autocom-box li{
  list-style: none;
  padding: 8px 20px;
  display: none;
  width: 100%;
  cursor: default;
  border-radius: 3px;
  margin-bottom: 10px;
}

.custom-search.active .autocom-box li{
  display: block;
}
.autocom-box li:hover{
  background: #efefef;
}
.autocom-box li span{
    width: 50px;
    height: 50px;
    background: #eee;
    border-radius: 50%;
    display: inline-block;
    margin-right: 20px;
}
.autocom-box li span img{
    width: 100%;
    border-radius: 50%;
}

/*my profile*/
.my-prfile-avatar{
    width: 35px;
    height: 35px;
    display: inline-block;
    border-radius: 50%;
    background-color: #eee;
    vertical-align: bottom;
}
.my-prfile-avatar img{
    border-radius: 50%;
}
/*.my-profile-wrap{*/
/*    margin-top: 100px;*/
/*}*/
.my-profile{
    width: 70%;
    margin: 0 auto;
}
.profile-img{
    width: 150px;
    height: 150px;
    display: block;
    border-radius: 50%;
    background-color: #eee;
    margin: 0 auto;
}
.profile-img img{
    border-radius: 50%;
}
.start-follow {
    margin-top: 5px;
    font-size: 18px;
}
.started-following.custom-btn{
    display: none;
    background: #5763DE;
    margin-top: 5px;
    font-size: 18px;
    transition: 0.4s ease all;
}
.started-following.custom-btn:hover{
    box-shadow: 0px 2px 20px rgb(87 99 222 / 50%);
    color: #fff;
}
.my-profile h6{
    font-weight: 700;
    color: #000;
}
.my-profile p{
    color: #000;
    margin-bottom: 10px;
}
.my-profile h2{
    margin-top: 10px;
    font-weight: 700;
    font-size: 40px;
    color: #000;
    margin-bottom: 10px;
}

/*details*/
.details-wrap{
    margin-top: 100px;
    position: relative;
}
.fixed-back{
    display: inline-flex;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    justify-content: center;
    align-items: center;
    color: #000;
    font-size: 30px;
    position: fixed;
    left: 20px;
    top: 115px;
    z-index: 9;
    transition: 0.4s ease all;
}
.fixed-back:hover{
    background-color: #eee;
    color: #000;
}
.detail-img{
    cursor: pointer;
    padding: 0;
}
.detail-img img{
    max-height: 700px;
    border-radius: 30px;
}
.detail-img:hover .overlay {
    opacity: 1;
    border-radius: 30px;
}
.play-btn{
    position: absolute;
    top: 40px;
    right: -10px;
     font-size: 30px; 
    /* padding: 0px 10px; */
    width: 40px;
    background: #fff;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.side-bar{
    padding: 10px 40px;
}
.side-bar .content{
    width: 50%;
    display: inline-block;
}
.side-bar  .content .icons a{
    height: 30px;
    width: 30px;
    font-size: 14px;
    margin-left: 10px;
}
.details-text  h2{
    font-weight: bold;
}
.details-text .col-6 p{
    color: #999;
    font-size: 14px;
}
.details-text .col-6 span{
    color: #999;
    font-size: 15px;
}
.card-profile{
    display: flex;
    align-items: center;
}
.card-profile span.mr-3 {
    width: 40px;
    height: 40px;
    background-color: #eee;
    border-radius: 50%;
    display: inline-block;
}
.card-profile img{
    border-radius: 50%;
}
.card-profile p{
    margin-bottom: 0;
    color: #000 !important;
    font-weight: bold;
}
.card-profile span{
    color: #000 !important;
    font-weight: normal;
}
.follow-profile.custom-btn {
    margin-top: 15px;
    font-size: 14px;
    padding: 3px 15px;
}
.following-profile.custom-btn {
    display: none;
    background: #5763DE;
    margin-top: 15px;
    font-size: 14px;
    transition: 0.4s ease all;
    padding: 3px 15px;
}
.following-profile.custom-btn:hover {
    box-shadow: 0px 2px 20px rgb(87 99 222 / 50%);
    color: #fff;
}
.comment-wrap h3{
    font-size: 20px;
    color: #000;
}

.comment-wrap ul{
    margin-top: 20px;
    list-style: none;
}
.comment-wrap ul li{
    margin-bottom: 15px;
}
.comment-wrap p{
    border: 1px solid #ddd;
    width: 70%;
    padding: 10px;
    border-radius: 10px;
    font-size: 13px;
}

/*dots*/
.details-img-wrap{
    position: relative;
}
.custom-pin{
    position: absolute;
    font-size: 20px;
    color: #625afe;
    /*background: #fff;*/
    border-radius: 50%;
    /*padding: 0px 6px;*/
    cursor: pointer !important;
    z-index: 1;
    /*box-shadow: 0 0 0px #ea4c89, inset 0 0 8px #ea4c89;*/
    box-shadow: 0 0 0px #625afe, inset 0 0 8px #625afe;
    -webkit-animation: pulse 2s linear 1s infinite;
}
.hotspots1{
    right: 120px;
    top: 100px;
}
.hotspots2{
    left: 120px;
    bottom: 250px;
}
.custom-pin span i{
    background: #fff;
    border-radius: 50%;
    /* padding: 4px; */
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@-webkit-keyframes pulse {
  0% { box-shadow:0 0 0px #625afe, inset 0 0 8px #625afe; }
  50% { box-shadow:0 0 25px #625afe, inset 0 0 14px #625afe; }
  100% { box-shadow:0 0 0px #625afe, inset 0 0 8px #625afe; }
}

.hotspot-text{
    display: none;
    position: absolute;
    width: 180px;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    font-size: 12px;
    color: #545454;
    top: 28px;
    left: -62px;
}
.hotspot-text h4{
    font-size: 16px;
}
.hotspot-text p{
    margin-bottom: 0;
}
.carousel-item{
    background: #999;
    height: 500px;
}

/*hair meet*/
/*.box{*/
/*    padding: 0 40px;*/
/*}*/
.img-box-hair img{
    border-radius: 20px;
    height: 317px;
}
.img-box i{
    color: #379c58;
}
.content-box{
    border-radius: 20px;
    padding: 15px 20px;
    background: #fff;
    box-shadow: 1px 4px 10px rgba(43, 77, 151, 0.1);
    position: relative;
    top: -30px;
}
.content-box h4{
    font-size: 18px;
}
.content-box p{
    margin-bottom: 5px;
}
.content-box p i{
    font-size: 14px;
    color: #379c58;
}
.heading-border:after{
    content: '';
    width: 70px;
    height: 3px;
    border-radius: 5px;
    background-color: #379c58;
    display: block;
    margin: 0 auto;
    margin-top: 15px;
}
.heading-border:before{
    display: none !important;
}
.box{
    transition: 0.4s ease all;
    position: relative;
    top: 0px;
}
.box:hover{
    position: relative;
    top: -5px;
}

.about-section{
    background-color: #f8fbff;
    padding: 40px;
    margin-top: 120px;
    margin-bottom: 120px;
}
.circle span{
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgb(43 77 151 / 20%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin: 0 auto;
    color: #379c58;
}
.circle-wrap h4{
    margin-top: 15px;
    font-size: 20px;
}
.about-section p{
    margin-top: 20px;
    line-height: 26px;
}
.about-section h3{
    font-size: 30px;
    position: relative;
}
.about-section h3:before{
    content: '';
    width: 4px;
    height: 30px;
    background-color: #379c58;
    display: inline-block;
    vertical-align: bottom;
    margin-right: 10px;
}
.login-form {
    padding: 20px 100px;
    width: 50%;
    margin: 0 auto;
}
.login-form h2{
    font-size: 20px;
    text-align: center;
}
.btn-primary{
    background-color: #379c58;
    border-color: #379c58;
}
.btn-outline-primary{
    /*background-color: #379c58;*/
    border-color: #379c58;
    color: #379c58;
}

/*listing*/
/*category*/
.sidebar {
  height: 100%;
  width: 285px;
  display: inline-block;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: transparent;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 15px;
  padding-bottom: 15px;
}
.sidebar a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}
.sidebar a:hover {
  color: #f1f1f1;
}

.full-width {
  transition: margin-left .5s;
  padding: 16px;
  display: inline-block;
  vertical-align: top;
  width: calc(100% - 291px);
}
.full-width.open{
    width: 100%;
}


.custom-filter{
    color: #333 !important;
    padding: 0 !important;
    font-size: 16px !important;
    font-weight: 600;
}
#accordion{
    padding: 0 20px;
}
.filter-div{
    padding-top: 10px;
    border-top: 1px solid #ced4da;
}
.form-check{
    margin-bottom: 5px;
}
.form-check input{
    height: auto;
}
.form-check-label{
    font-size: 12px;
    vertical-align: top;
}
.form-check-label i{
    color: #e59819;
}
.events-box.category-box{
    display: flex;
}

.events-box.category-box:hover .img-box img {
    transition: .8s;
    transform: scale(1.00);
}
.events-box.category-box img{
    width: 300px;
}
.events-box.category-box .event-content{
    width: 60%;
}
.events-box.category-box .event-content span{
    color: #999;
    font-size: 14px;
    display: inline-block;
    margin-top: 5px;
}
.events-box.category-box .event-content .ratings span{
    color: #333;
    font-size: 14px;
}
.category-price p{
    color: #222;
    font-weight: 600;
}
.plus-course{
    margin-bottom: 20px;
}
.plus-course i{
    color: #cedad4;
    font-size: 24px;
}
.nav-tabs .nav-link{
    color: #8bc34a !important;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #495057 !important;
}

.events-box.category-box{
    display: flex;
}

.events-box.category-box:hover .img-box img {
    transition: .8s;
    transform: scale(1.00);
}
.events-box.category-box img{
    width: 300px;
}
.events-box.category-box .event-content{
    width: 60%;
}
.events-box.category-box .event-content span{
    color: #999;
    font-size: 14px;
    display: inline-block;
    margin-top: 5px;
}
.events-box.category-box .event-content .ratings span{
    color: #333;
    font-size: 14px;
}

.social-media{
    margin-top: 20px;
}
.social-media .icons a{
    width: 30px;
    height: 30px;
    font-size: 15px;
    margin-right: 5px;
}

.banner{
    background: url('../images/GettyImages-178516432.jpg');
    background-size: contain;
    width: 100%;
    height: 500px;
    background-position: center center;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    justify-content: center;
    position: relative;
}
.banner:before {
    background: linear-gradient(87deg, rgb(38 77 151 / 60%), rgba(75, 1, 107, 0.6) 100%) !important;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 110px 0;
    left: 0;
    right: 0;
    display: block;
    z-index: 0;
    top: 0;
}
.banner-text {
    z-index: 1;
}
.banner-text h1{
    color: #fff;
}
.banner-text p{
    color: #fff;
}
.home-form {
    width: 70%;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    margin-top: 30px;
    z-index: 1;
}
.search-home {
    width: 100%;
    display: block;
    padding: 10px;
    border-radius: 5px;
}
.my-avatar img {
    width: 25px;
    height: 25px;
    border-radius: 50%;
}
.navbar .dropdown-menu {
    border: 0;
    box-shadow: 0px 6px 18px rgb(0 0 0 / 30%);
    border-radius: 5px;
    margin-top: -5px;
}
.navbar .dropdown-menu .dropdown-item {
    background: #fff;
    padding: 10px 20px;
    transition: 0.4s ease all;
    min-width: 150px;
}
.navbar .dropdown-menu .dropdown-item:hover{
    color: #379c58;
}
.edit-profile-wrap{
    padding: 0;
    width: 100%;
}
.edit-profile-wrap h2{
    text-align: left;
    font-size: 24px;
}
.profile-image span {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}
.profile-image span img {
    border-radius: 50%;
}
.edit-profile-img {
    width: 20px !important;
    height: 20px !important;
    border-radius: 50% !important;
    background-color: #379c58;
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 10px;
    position: absolute;
    bottom: 0;
    right: 0;
}
.edit-profile-img:hover{
    color: #fff;
}
.profile-image{
    padding: 0 20px;
}
.adjust-label{
    align-items: center;
}
.select2-container--default .select2-selection--multiple{
    border: 1px solid #ced4da !important;
    min-height: 45px !important;
}

.multi-select-wrap i {
    position: absolute;
    right: 19px;
    font-weight: 700;
    color: #000;
    bottom: 12px;
}
.custom-position{
    position: absolute;
    right: 6px;
    font-weight: 700 !important;
    color: #000;
    bottom: 14px;
}

/*profile image*/
.avatar-upload {
  position: relative;
  max-width: 120px;
  /*margin: 50px auto;*/
}
.avatar-upload .avatar-edit {
  position: absolute;
  right: 12px;
  z-index: 1;
  top: 10px;
}
.avatar-upload .avatar-edit input {
  display: none;
}
.avatar-upload .avatar-edit input + label {
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-bottom: 0;
  border-radius: 100%;
  background: #379c58;
  border: 1px solid transparent;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font-weight: normal;
  transition: all 0.2s ease-in-out;
}
.avatar-upload .avatar-edit input + label:hover {
  background: #379c58;
  border-color: #d6d6d6;
}
.avatar-upload .avatar-edit input + label:after {
  content: "\f040";
  font-family: "FontAwesome";
  color: #fff;
  position: absolute;
  top: 4px;
  left: 0;
  right: 0;
  text-align: center;
  margin: auto;
  font-size: 12px;
}
.avatar-upload .avatar-preview {
  width: 100px;
  height: 100px;
  position: relative;
  border-radius: 100%;
  border: 6px solid #f8f8f8;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}
.avatar-upload .avatar-preview > div {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.image-uploader-wrap{
    max-width: 100%;
}
.image-uploader-wrap.avatar-upload .avatar-edit{
    position: static;
}
.image-uploader-wrap.avatar-upload .avatar-edit input + label {
    display: block;
    width: 100%;
    height: auto;
    padding: 10px;
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
    border-radius: 5px;
    background: #379c58;
}
.image-uploader-wrap.avatar-upload .avatar-edit input + label:after{
    display: none;
}
.image-uploader-wrap.avatar-upload .avatar-preview {
    border-radius: 5px;
    display: none;
    width: 100%;
    height: 300px;
}
.image-uploader-wrap.avatar-upload .avatar-preview > div {
    border-radius: 5px;
}
textarea.form-control{
    height: auto;
}
/*.grid-item{*/
/*    min-height: 300px;*/
/*}*/
.custom-image-modal .modal-dialog{
    max-width: 90%;
    border-radius: 10px;
    height: 90vh;
}
.custom-image-modal .modal-content{
    width: 100%;
    border-radius: 10px;
    background: #333;
    height: 100%;
}
.custom-image-modal .modal-body{
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.custom-image-modal .modal-body img{
    width: 50%;
}
.custom-image-modal .modal-header{
    border: 0;
}
.custom-image-modal .modal-header h5{
    color: #fff;
}
.custom-image-modal .modal-header button span{
    color: #fff;
}

.select2-results__option {
  border-radius: 0;
  margin-bottom: 1px;
  font-size: inherit; }

.select2-container--default .select2-selection--single {
  /*background-color: #fff !important;*/
  border-color: #d0dbde !important;
  border-radius: 4px !important;
  height: 44px !important;
  outline: none; 
  font-size: 16px;
  padding-top: 5px;
  padding-left: 4px;
}
  .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #596882;
    line-height: calc(1.5em + 0.9375rem + 2px)-0.1rem;
    padding-left: 12px;
    height: 100%;
    display: flex;
    align-items: center; }
  .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #7987a1; }
  .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 8px !important;
    width: 30px;
    height: 38px;
    line-height: calc(1.5em + 0.9375rem + 2px); }
    .select2-container--default .select2-selection--single .select2-selection__arrow b {
      margin-top: -3px; }
  .select2-container--default .select2-selection--single .select2-selection__clear {
    font-size: 20px;
    font-weight: 400;
    order: 2;
    margin-left: auto;
    margin-right: 5px;
    color: #8392a5;
    position: relative;
    z-index: 100; }
    .select2-container--default .select2-selection--single .select2-selection__clear:hover {
      color: #1b2e4b; }

.select2-container--default .select2-selection--multiple {
  background-color: #fff;
  border-color: #d0dbde;
  border-radius: 1px;
  min-height: 42px;
  outline: none;
}
  .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    padding: 0 4px;
    display: block; }
  .select2-container--default .select2-selection--multiple .select2-selection__choice {
    position: relative;
    margin-top: 4px;
    margin-right: 4px;
    padding: 3px 10px 3px 20px;
    border-color: transparent;
    border-radius: 1px;
    background-color: #0168fa;
    /*color: #fff;*/
    font-size: 13px;
    line-height: 1.45; }
  .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #fff;
    opacity: .5;
    font-size: 14px;
    font-weight: 400;
    display: inline-block;
    position: absolute;
    top: 4px;
    left: 7px;
    line-height: 1.2; }

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border-color: #c0ccda; }

.select2-container--default .select2-search--dropdown .select2-search__field {
  border-color: #c0ccda;
  border-radius: 0;
  padding: 5px 10px; }
  .select2-container--default .select2-search--dropdown .select2-search__field::placeholder {
    color: #8392a5; }

.select2-container--default .select2-results__option[aria-selected="true"] {
  background-color: white; }

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #009efb; }

.select2-container--default .select2-results > .select2-results__options {
  margin: 4px; }

.select2-container--default .select2-search--inline .select2-search__field {
  margin-top: 6px;
  line-height: 26px;
  padding-left: 10px;
  opacity: 1; }
  .select2-container--default .select2-search--inline .select2-search__field::placeholder {
    color: #8392a5;
    font-weight: 400;
    opacity: 1; }

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #f5f6fa; }

.select2-container--default.select2-container--disabled .select2-selection__choice {
  padding-left: 10px;
  background-color: #97a3b9; }
  .select2-container--default.select2-container--disabled .select2-selection__choice .select2-selection__choice__remove {
    display: none; }

.select2-container--open {
  font-size: 14px; }
  .select2-container--open .select2-selection--single,
  .select2-container--open .select2-selection--multiple {
    background-color: #f6f7f9;
    border-color: #c0ccda; }
  .select2-container--open .select2-dropdown--above {
    border-top-left-radius: 0;
    border-top-right-radius: 0; }
  .select2-container--open .select2-dropdown--below {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    top: 0; }

.select2-dropdown {
  border-color: #c0ccda;
  z-index: 200; }

.select2-search--dropdown {
  padding-bottom: 0; }

.select2-results__option {
  padding: 6px 10px;
  font-size: inherit; }

.has-success .select2-container--default .select2-selection--single {
  border-color: #10b759; }

.has-warning .select2-container--default .select2-selection--single {
  border-color: #ffc107; }

.has-danger .select2-container--default .select2-selection--single {
  border-color: #dc3545; }

.select2-xs + .select2-container {
  font-size: 12px; }

.select2-dropdown-xs .select2-results__option {
  font-size: 12px; }

.select2-sm + .select2-container {
  font-size: 14px; }

.select2-dropdown-sm .select2-results__option {
  font-size: 14px; }

.select2-bd-0 + .select2-container--default .select2-selection--single {
  border-width: 0; }

.bg-gray + .select2-container--default .select2-selection--single {
  background-color: #455473; }
  .bg-gray + .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #cdd4e0; }
.select2-container{
    width: 100%!important;
}



/*appointment*/
.appointment-wrap{
    width: 90%;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 4px 10px rgb(0 0 0 / 20%);
    margin-top: 20px;
    margin-bottom: 20px;
}
.back-prev{
    font-size: 35px;
    color: #379c58;
}
.appointment-wrap .profile-image span{
    width: 100%;
    height: auto;
}
.appointment-wrap .profile-image span img{
    width: 60px;
    height: 60px;
}
.appointment-wrap .profile-image {
    padding: 0px;
}
.mr-0{
    margin: 0;
}
.time-duration{
    color: #999;
}
.border-left{
    border-left: 1px solid #ddd;
}
.appointment-wrap .btn.btn-primary.collapsed{
    background-color: transparent;
    border-color: #379c58;
    color: #379c58;
}
.appointment-wrap .btn.btn-primary{
    background-color: #666;
    border-color: #666;
}
.appointment-wrap .btn.btn-primary.btn-confirm{
    background-color: #379c58;
    border-color: #379c58;
}
.time-slots{
    margin-bottom: 10px;
}
.time-slot-wrap{
    height: 500px;
    overflow-y: scroll;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.time-slot-wrap::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.time-slot-wrap {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
.time-slot-wrap p{
    font-weight: bold;
}
.scheduled-text{
    font-size: 17px;
    color: #3798c3;
    font-weight: bold;
}
.confirm-details{
    width: 60%;
    margin: 0 auto;
    border-top: 1px solid #ddd;
}


.slots-details-wrap{
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 5px;
}
.slots-details-wrap .nav-pills .nav-link {
    border-radius: 0.25rem;
    border: 1px solid #007bff;
    margin-right: 12px;
    margin-bottom: 12px;
    color: #007bff;
}
.slots-details-wrap .nav-pills .nav-link.active {
    color: #fff;
}
.times-tags span{
    display: inline-block;
    background: #379c58;
    padding: 5px 10px;
    color: #fff;
    border-radius: 5px;
    margin-bottom: 10px
}
.times-tags span a{
    color: #fff;
}

.appointment-list{
    width: 90%;
    margin-left: auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 4px 10px rgb(0 0 0 / 20%);
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}
.appointment-list img{
    width: 150px;
    height: 150px;
    margin-right: 20px;
}
.appointment-list p{
    margin-bottom: 5px;
    font-size: 14px;
    color: #424242;
}
/*.action-btn {*/
/*    margin-left: 350px;*/
/*}*/


/*calender*/
.fc-left h2 {
  color: #ed8392;
}

.fc-content {
  float: left;
  margin-right: 51px;
}
.I_delete {
  margin: 37px;
}
.I_edit,
.I_delete {
  cursor: pointer;
}
.site-header {
  margin: 1.4em 28em;
  position: absolute;
  top: -4%;
  width: 41%;
}

.input-wrapper {
  background-color: #333;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  height: 48px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  width: 50%;
}

::-webkit-input-placeholder {
  color: #fff;
}

.search-field {
  background-color: transparent;
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTYuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgd2lkdGg9IjMycHgiIGhlaWdodD0iMzJweCIgdmlld0JveD0iMCAwIDYxMi4wMSA2MTIuMDEiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDYxMi4wMSA2MTIuMDE7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPGc+Cgk8ZyBpZD0iX3gzNF9fNF8iPgoJCTxnPgoJCQk8cGF0aCBkPSJNNjA2LjIwOSw1NzguNzE0TDQ0OC4xOTgsNDIzLjIyOEM0ODkuNTc2LDM3OC4yNzIsNTE1LDMxOC44MTcsNTE1LDI1My4zOTNDNTE0Ljk4LDExMy40MzksMzk5LjcwNCwwLDI1Ny40OTMsMCAgICAgQzExNS4yODIsMCwwLjAwNiwxMTMuNDM5LDAuMDA2LDI1My4zOTNzMTE1LjI3NiwyNTMuMzkzLDI1Ny40ODcsMjUzLjM5M2M2MS40NDUsMCwxMTcuODAxLTIxLjI1MywxNjIuMDY4LTU2LjU4NiAgICAgbDE1OC42MjQsMTU2LjA5OWM3LjcyOSw3LjYxNCwyMC4yNzcsNy42MTQsMjguMDA2LDBDNjEzLjkzOCw1OTguNjg2LDYxMy45MzgsNTg2LjMyOCw2MDYuMjA5LDU3OC43MTR6IE0yNTcuNDkzLDQ2Ny44ICAgICBjLTEyMC4zMjYsMC0yMTcuODY5LTk1Ljk5My0yMTcuODY5LTIxNC40MDdTMTM3LjE2NywzOC45ODYsMjU3LjQ5MywzOC45ODZjMTIwLjMyNywwLDIxNy44NjksOTUuOTkzLDIxNy44NjksMjE0LjQwNyAgICAgUzM3Ny44Miw0NjcuOCwyNTcuNDkzLDQ2Ny44eiIgZmlsbD0iI0ZGRkZGRiIvPgoJCTwvZz4KCTwvZz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8L3N2Zz4K);
  background-position: 20px 14px;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  border: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  height: 100%;
  letter-spacing: 2px;
  outline: none;
  padding: 0 10px 0 65px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
}
/*#calendar {*/
/*  margin: -54px 5px;*/
/*  position: absolute;*/
/*}*/
.search-field:placeholder-shown {
  color: #fff;
}

.search-field:focus {
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTYuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgd2lkdGg9IjMycHgiIGhlaWdodD0iMzJweCIgdmlld0JveD0iMCAwIDYxMi4wMSA2MTIuMDEiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDYxMi4wMSA2MTIuMDE7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPGc+Cgk8ZyBpZD0iX3gzNF9fNF8iPgoJCTxnPgoJCQk8cGF0aCBkPSJNNjA2LjIwOSw1NzguNzE0TDQ0OC4xOTgsNDIzLjIyOEM0ODkuNTc2LDM3OC4yNzIsNTE1LDMxOC44MTcsNTE1LDI1My4zOTNDNTE0Ljk4LDExMy40MzksMzk5LjcwNCwwLDI1Ny40OTMsMCAgICAgQzExNS4yODIsMCwwLjAwNiwxMTMuNDM5LDAuMDA2LDI1My4zOTNzMTE1LjI3NiwyNTMuMzkzLDI1Ny40ODcsMjUzLjM5M2M2MS40NDUsMCwxMTcuODAxLTIxLjI1MywxNjIuMDY4LTU2LjU4NiAgICAgbDE1OC42MjQsMTU2LjA5OWM3LjcyOSw3LjYxNCwyMC4yNzcsNy42MTQsMjguMDA2LDBDNjEzLjkzOCw1OTguNjg2LDYxMy45MzgsNTg2LjMyOCw2MDYuMjA5LDU3OC43MTR6IE0yNTcuNDkzLDQ2Ny44ICAgICBjLTEyMC4zMjYsMC0yMTcuODY5LTk1Ljk5My0yMTcuODY5LTIxNC40MDdTMTM3LjE2NywzOC45ODYsMjU3LjQ5MywzOC45ODZjMTIwLjMyNywwLDIxNy44NjksOTUuOTkzLDIxNy44NjksMjE0LjQwNyAgICAgUzM3Ny44Miw0NjcuOCwyNTcuNDkzLDQ2Ny44eiIgZmlsbD0iIzAwMDAwMCIvPgoJCTwvZz4KCTwvZz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8L3N2Zz4K);
  color: #000;
}

.focus-background {
  background-color: #fff;
  display: block;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 8;
  width: 100%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: right center;
  transform-origin: right center;
}

.search-field:focus ~ .focus-background {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

#calendar-popup {
  display: none;
  position: absolute;
  margin-bottom: 0;
  padding: 0 1.33em;
  z-index: 1000;

  border: solid rgba(200, 200, 200, 0.75) 2px;
  border-radius: 10px;
  color: black;
  background: #fff;
}
.calander_popip_title {
  border-bottom: 1px solid #484141;
  text-align: center;
  margin: 1em 1em;
  padding: 0.5em;
  font-size: 20px;
  background: #eee;
}

#calendar-popup * {
  display: block;
}
.fc-day-grid-event .fc-content {
  margin-bottom: 10px;
}
#calendar-popup header {
  text-align: center;
  font-size: 1.5em;
  line-height: 1.9em;
  margin-bottom: 0.5em;
  background: #a1a1ad;
}

/* #calendar-popup button.close {
  margin: 10px 10px 0 0;
} */

#calendar-popup label,
#calendar-popup input,
#calendar-popup textarea {
  font-size: 0.9em;
  font-weight: normal;
  margin-bottom: 0;
  padding: 0;
  width: 100%;
}

#calendar-popup input {
  margin-bottom: 0.5em;
  padding: 0;
}
#calendar-popup .submit_btn {
  width: 86%;
  background-color: #eee;
}

#calendar-popup time {
  font-style: italic;
  line-height: 1em;
  margin-top: 0;
}

#calendar-popup form,
#calendar-popup div#event {
  margin: 0.75em 0 0.75em 0;
  /*   padding-left: 20px; */
}

#calendar-popup li {
  margin-bottom: 0.33em;
  margin-right: 42px;
}
#calendar-popup li:nth-child(odd) {
  background: #eee;
}
#calendar-popup li:nth-child(even) {
  background: #5555;
}
#calendar-popup li.location,
#calendar-popup li.details {
  font-size: 0.85em;
  color: #333;
}

#calendar-popup div.prong {
  position: relative;
  float: right;

  bottom: 0;
  right: 15px;

  height: 0;
  width: 20px;
}

#calendar-popup div.prong div.bottom-prong-dk {
  position: relative;
  top: 0;
  left: 0;

  border: 10px solid;
  border-color: rgba(200, 200, 200, 0.75) transparent;
  border-bottom: 0;
}

#calendar-popup div.prong div.bottom-prong-lt {
  position: relative;
  top: -10px;
  left: 2px;
  width: 0;

  border: 8px solid;
  border-color: white transparent;
  border-bottom: 0;
}

#calendar-popup div.prong div.top-prong-dk {
  position: relative;
  top: 2px;
  left: 0;

  border: 10px solid;
  border-color: rgba(200, 200, 200, 0.75) transparent;
  border-top: 0;
}

#calendar-popup div.prong div.top-prong-lt {
  position: relative;
  top: -6px;
  left: 2px;
  width: 0;

  border: 8px solid;
  border-color: white transparent;
  border-top: 0;
}

/*.modle {*/
/*  display: none;*/
/*  position: fixed;*/
/*  z-index: 1;*/
/*  left: 0;*/
/*  top: 0;*/
/*  height: 100%;*/
/*  width: 100%;*/
/*  background-color: rgba(0, 0, 0, 0.3);*/
/*  overflow: auto;*/
/*}*/
/*.modle-continer {*/
/*  background-color: #f4f4f4;*/
/*  margin: 5% auto;*/
/*  width: 70%;*/
/*  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.2), 0 7px 20px rgba(0, 0, 0, 0.2);*/
/*  animation-name: modalopen;*/
/*  animation-duration: 1s;*/
/*}*/
/*.modal-header {*/
/*  background: #eee;*/
/*  padding: 15px;*/
/*  color: #000;*/
/*}*/
/*.modal-header h2 {*/
/*  position: absolute;*/
/*  right: 46%;*/
/*}*/

/*.close-btn {*/
/*  color: #000;*/
/*  float: right;*/
/*  font-size: 30px;*/
/*}*/
/*.close-btn:hover,*/
/*.close-btn:focus {*/
/*  color: #000;*/
/*  text-decoration: none;*/
/*  cursor: pointer;*/
/*}*/
/*.modal-body {*/
/*  padding: 10px 20px;*/
/*}*/
/*.modal-footer {*/
/*  background: #eee;*/
/*  padding: 10px;*/
/*  color: #000;*/
/*  text-align: center;*/
/*}*/
/*.modal-footer h3 {*/
/*  margin: 0;*/
/*}*/
/*@keyframes modalopen {*/
/*  from {*/
/*    opacity: 0;*/
/*  }*/
/*  to {*/
/*    opacity: 1;*/
/*  }*/
/*}*/

.modal-open .modal {
    background: rgba(0, 0, 0, 0.8) !important;
}
#search_result {
  position: absolute;
  top: 62px;
  left: 594px;
  border: 1px solid #111;
  padding: 1em 7.7em;
  display: none;
}

.autocomplete {
  background: #fff;
  position: relative;
}
.autocomplete .close {
  position: absolute;
  font-size: 13px;
  z-index: 10;
  top: 17px;
  left: calc(100% - 50px);
  color: #000;
  cursor: pointer;
  display: none;
}
.autocomplete .close.visible {
  display: block;
}
.dialog {
  width: 51%;
  display: none;
  min-height: 40px;
  max-height: 329px;
  overflow: scroll;
  border-top: 1px solid #f4f4f4;
  z-index: 12 !important;
  margin: 6px 145px;
  position: absolute;
}
.dialog.open {
  display: block;
  background: #fff;
  z-index: 11 !important;
  color: black;
}
.dialog div {
  padding: 20px 10px;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
  position: absolute;
  left: 93px;
  width: 100%;
  height: 100%;
}

.vertical-date {
  list-style: none;
  padding: 1em;
  text-align: left;
  border-bottom: 2px solid #000;
}

.list-daynumber {
  line-height: 0.5em;
  font-size: 46px;
  font-weight: 800;
  opacity: 0.9;
}

.list-monthname {
  font-size: 32px;
  opacity: 0.6;
  border-bottom: 5px solid #ff4d55;
  width: 59px;
}

.duration {
  display: block;
  color: #908383;
  font-weight: 600;
  margin-top: 0.8em;
}

.s_title {
  color: #ed8392;
  font-size: 1.3em;
  margin: -13px 34px;
  position: absolute;
  font-weight: 900;
}

.s_des {
  font-size: 16px;
  font-style: italic;
}


.calendar{
  position: static !important;
  width: 280px !important;
  background: #fff !important;
  border-radius: 4px !important;
  overflow: hidden !important;
  box-shadow: 2px 4px 10px rgb(0 0 0 / 20%);
  margin-top: 40px !important;
  margin-left: 20px !important;
  /*padding: 10px;*/
  padding-top: 20px;
  padding-bottom: 25px;
}

.ui-datepicker-header{
  height: 50px;
  line-height: 50px;
  color: #379c58;
  background: #fff;
  margin-bottom: 10px;
}

.ui-datepicker-prev, .ui-datepicker-next{
  width: 20px;
  height: 20px;
  text-indent: 9999px;
  border: 2px solid #b0aead;
  border-radius: 100%;
  cursor: pointer;
  overflow: hidden;
  margin-top: 12px;
}

.ui-datepicker-prev{
  float: left;
  margin-left: 12px;
}
.ui-datepicker-prev:after{
    transform: rotate(45deg);
    margin: -43px 0px 0px 8px;
}

.ui-datepicker-next{
  float: right;
  margin-right: 12px;
}
.ui-datepicker-next:after{
    transform: rotate(-135deg);
    margin: -43px 0px 0px 6px;
}

.ui-datepicker-prev:after, .ui-datepicker-next:after{
  content: '';
  position: absolute;
  display: block;
  width: 4px;
  height: 4px;
  border-left: 2px solid #b0aead;
  border-bottom: 2px solid #b0aead;
}

.ui-datepicker-prev:hover, .ui-datepicker-next:hover, .ui-datepicker-prev:hover:after, .ui-datepicker-next:hover:after{
  border-color: #379c58;
}

.ui-datepicker-title{
  text-align: center;
}

.ui-datepicker-calendar {
  width: 100%;
  text-align: center;
}

.ui-datepicker-calendar thead, 
.ui-datepicker-calendar tr,
.ui-datepicker-calendar th,
.ui-datepicker-calendar span{
  /*display: block;*/
  width: 40px;
  color: #379c58;
  margin-bottom: 5px;
  font-size: 13px;
}

.ui-state-default{
  display: block;
  text-decoration: none;
  color: #000;
  line-height: 40px;
  font-size: 13px;
}
 .ui-state-default:hover{
    background: rgba(0,0,0,0.02);
    border-radius: 50%;
 }

.ui-state-highlight{
  color: #3a94cc;
}

.ui-state-active{
  color: #fff;
  background: #379c58;
     border-radius: 50%;
}
.ui-state-active:hover{
    color: #fff;
  background: #379c58;
}

.ui-datepicker-unselectable .ui-state-default{
    color: #eee;
    border: 2px solid transparent;
}
