/* floating button section */
.floating-buttons-section{
    background: transparent;
    height: auto;
    overflow: hidden;
    z-index: 999;
    position: fixed;
    top: 50%;
    left: 0;
    right: auto;
    padding: 30px;
    transform: translate(0%, -50%);
    transition: all 0.4s;
    overflow: visible;
}
[dir="rtl"] .floating-buttons-section{
    right: 0;
    left: auto;
}

/* floating button */
.aiz-floating-button{
    margin-bottom: 12px;
    transition: all 0.8s;
}
.floating-buttons-section.show .aiz-floating-button{
    margin-left: 0;
    margin-right: auto;
}
[dir="rtl"] .floating-buttons-section.show .aiz-floating-button{
    margin-right: 0;
    margin-left: auto;
}
.aiz-floating-button a{
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    padding: 0;
    font-size: 16px;
    width: auto;
    height: 50px;
    border-radius: 25px;
    color: #fff;
    overflow: hidden;
    box-shadow: 0px 10px 30px rgba(105, 105, 105, 0.5);
}
.aiz-floating-button a .circle{
    width: 50px;
    height: 50px;
    border-radius: 25px;
    background: var(--primary);
    transition: all 0.8s cubic-bezier(0.65,0,.076,1);
    position: relative;
    display: flex;
    align-items: center;
    margin: 0;
    overflow: hidden;
}
.aiz-floating-button a:hover .circle{
    width: 220px;
}
.aiz-floating-button a .circle::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: transparent;
    z-index: 9;
    transition: all 0.7s;
}
.aiz-floating-button a:hover .circle::before{
    background-color: rgb(0 0 0 / 10%);
}
.aiz-floating-button a .circle span{
    width: 50px;
    height: 50px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.aiz-floating-button a .text {
    transition: all 0.7s cubic-bezier(0.65,0,.076,1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 20px;
    margin: 0 0 0 -25rem;
    font-size: 16px;
    color: var(--white);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
}
[dir="rtl"] .aiz-floating-button a .text {
    margin: 0 -25rem 0 0;
}
.aiz-floating-button a:hover .text {
    visibility: visible;
    z-index: 1;
    opacity: 1;
    margin: 0 0 0 1.85rem;
}
[dir="rtl"] .aiz-floating-button a .text > span{
    margin-right: 2.1rem !important;
}
[dir="rtl"] .aiz-floating-button a .text > svg{
    transform: rotate(180deg);
}

/* floating buttons section control */
.floating-buttons-section-control{
    display: block;
    background: var(--secondary-base);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    margin-right: -35px;
}
[dir="rtl"] .floating-buttons-section-control{
    margin-right: 0;
    margin-left: -35px;
}
.floating-buttons-section-control i{
    color: var(--white);
    font-size: 20px;
    transition: all 0.8s;
}
.floating-buttons-section.show .floating-buttons-section-control {
    box-shadow: 0px 10px 30px rgba(105, 105, 105, 0.5);
    margin-right: auto;
}
[dir="rtl"] .floating-buttons-section.show .floating-buttons-section-control {
    margin-right: 0;
    margin-left: auto;
}
.floating-buttons-section.show .floating-buttons-section-control i{
    transform: rotate(180deg);
}

@media (max-width: 991px) {
    .floating-buttons-section{
        padding: 0 0 0 10px !important;
    }
    [dir="rtl"] .floating-buttons-section{
        padding: 0 10px 0 0 !important;
    }
    .floating-buttons-section.show{
        padding: 30px 30px 30px 10px !important;
    }
    [dir="rtl"] .floating-buttons-section.show{
        padding: 30px 10px 30px 30px !important;
    }
    .aiz-floating-button{
        margin-left: -100px;
        margin-right: auto;
    }
    [dir="rtl"] .aiz-floating-button{
        margin-right: -100px;
        margin-left: auto;
    }
}
@media (max-width: 575px) {
    .floating-buttons-section{
        padding: 0 0 0 5px !important;
    }
    [dir="rtl"] .floating-buttons-section{
        padding: 0 5px 0 0 !important;
    }
    .floating-buttons-section.show{
        padding: 30px 30px 30px 5px !important;
    }
    [dir="rtl"] .floating-buttons-section.show{
        padding: 30px 5px 30px 30px !important;
    }
}

/* lds spinner */
.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #dfdfe6;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
    0% {
      transform: scale(0);
    }
    100% {
      transform: scale(1);
    }
}
@keyframes lds-ellipsis3 {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(0);
    }
}
@keyframes lds-ellipsis2 {
    0% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(24px, 0);
    }
}

/* aiz-refresh */
.aiz-refresh{
    position: fixed;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    z-index: -1;
    top: 0;
    left: 0;
    justify-content: center;
    background: #ffffff96;
}
.aiz-refresh.active{
    z-index: 5000;
}

.aiz-refresh-content,
.aiz-refresh-content div {
  box-sizing: border-box;
}
.aiz-refresh-content {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.aiz-refresh-content div {
  display: inline-block;
  position: absolute;
  left: 8px;
  width: 16px;
  background: currentColor;
  animation: aiz-refresh-content 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}
.aiz-refresh-content div:nth-child(1) {
  left: 8px;
  animation-delay: -0.24s;
}
.aiz-refresh-content div:nth-child(2) {
  left: 32px;
  animation-delay: -0.12s;
}
.aiz-refresh-content div:nth-child(3) {
  left: 56px;
  animation-delay: 0s;
}
@keyframes aiz-refresh-content {
  0% {
    top: 8px;
    height: 64px;
  }
  50%, 100% {
    top: 24px;
    height: 32px;
  }
}
ul.social.colored [class*="facebook"] {
    background-color: #3b5999;
}
ul.social.colored [class*="twitter"] 
{
    background: #38A1F3;
}
footer ul.social a {
    display: inline-block;
    width: 33px;
    height: 33px;
    border-radius: 3px;
    line-height: 36px;
    text-align: center;
    font-size: 18px;
}

ul.social.colored [class*="instagram"] {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}
ul.social.colored i {
    color: #fff;
    font-size: 22px;
    background: transparent !important;
}
img.pay_logo {
    width: 100%;
}
.footerli a, .footerli p, .footerli li {
    font-weight: 600;
}
.footerli a, .footerli p, .footerli li {
    font-weight: 600;
    color: #fff !important;
}
h4.fs-13.text-uppercase.fw-600.border-bottom.border-gray-900.pb-2.mb-4 {
    color: #fff;
    font-weight: 700 !important;
}
.copy_text, .desc_p {
    color: #fff !important;
    font-weight: 700 !important;
}
.copy_text {
    padding-bottom: 8px !important;
}
section.bg-white.border-top.mt-auto.footerpolicy h4 {
    font-size: 11px;
}

section.bg-white.border-top.mt-auto.footerpolicy .p-4 {
    padding: 20px 10px !important;
}
.newletter_btn input
{
    border-radius: .25rem 0 0 .25rem;
}
.newletter_btn .btn
{
    background-color: var(--hov-primary);
    border-color: var(--hov-primary);
    border-radius: 0 .25rem .25rem 0;
}
.newletter_btn .btn:hover
{
    background-color: #000;
    border-color: #000;
}
footer h4 {
    padding-bottom: 31px !important;
}

section.light_black.py-5.text-light.footer-widget h4 {
    padding-bottom: 15px !important;
    margin-bottom: 12px !important;
}