@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/* Plugin install Notice  */
.wrap {
  margin: 35px 20px -10px 2px;
}
.esh-el-notice {
  position: relative;
  background-color: #fff;
  border-radius: 20px;
  padding: 35px;
  border-bottom-width: 1px;
  border-color: rgb(221, 221, 221);
  border-left-width: 1px;
  border-right-width: 1px;
  border-style: solid;
  border-top-width: 1px;
  opacity: 1;
}
.esh-el-notice .esh-el-notice-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.esh-el-notice .esh-el-content {
  flex: 1;
  max-width: 50%;
}
.esh-el-notice .esh-el-title {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.1rem;
  letter-spacing: -1px;
  color: #212121;
  font-family: "Poppins", sans-serif;
  margin-top: 0;
}
.esh-el-notice .esh-el-details p {
  font-size: 16px;
  margin-bottom: 2rem;
  color: #777;
  font-family: "Poppins", sans-serif;
}
.esh-el-notice .esh-el-notice-btn .btn {
  padding: 14px 30px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  background: #7963FF;
  color: #fff;
  border-radius: 6px;
  transition: all 0.3s;
  box-shadow: none;
}
.esh-el-notice .esh-el-notice-btn .btn + .btn{
  gap: 10px;
  background-color: #000000;
}
.esh-el-notice .esh-el-notice-btn .btn + .btn:hover{
  background-color: #7963FF;
}
.esh-el-notice .esh-el-notice-btn {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.esh-el-notice .esh-el-notice-btn .btn:hover {
  background-color: #000;
  color: #fff;
}
.esh-el-notice .esh-el-notice-btn .btn i {
  font-size: 16px;
  transform: translateX(-100%);
  transition: all 0.5s;
  opacity: 0;
  line-height: 1.2;
  margin-top: 2px;
  margin-bottom: -2px;
}
.esh-el-notice .esh-el-notice-btn .btn:hover i {
  transform: translateX(30%);
  opacity: 1;
}
.esh-el-notice .esh-el-notice-btn .btn .loading {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  gap: 6px;
  height: 10px;
}
.esh-el-notice .esh-el-notice-btn .btn .loading span {
  width: 3px;
  height: 25px;
  background: #fff;
  animation: scale 0.9s ease-in-out infinite;
}
.esh-el-notice .esh-el-notice-btn .btn .loading span:nth-child(2) {
  animation-delay: -0.8s;
}
.esh-el-notice .esh-el-notice-btn .btn .loading span:nth-child(3) {
  animation-delay: -0.7s;
}
.esh-el-notice .esh-el-notice-btn .btn .loading span:nth-child(4) {
  animation-delay: -0.6s;
}
.esh-el-notice .esh-el-notice-btn .btn .loading span:nth-child(5) {
  animation-delay: -0.5s;
}
@keyframes scale {
  0%, 40%, 100% {
    transform: scaleY(0.05);
  }
  20% {
    transform: scaleY(1);
  }
}
.esh-el-notice .esh-el-content-img {
  max-width: 50%;
  width: 35%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 12px;
}
.esh-el-notice .esh-el-content-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}
/* responsive */
@media(max-width: 767px){
  .esh-el-notice .esh-el-notice-inner{
    flex-direction: column;
    gap: 30px;
  }
  .esh-el-notice .esh-el-content,.esh-el-notice .esh-el-content-img{
    width: 100%;
    max-width: 100%;
  }
  .esh-el-notice .esh-el-title {
    font-size: 30px;
 
  }
}
@media(max-width: 575px){
  .esh-el-notice{
    padding: 25px;
  }
}