@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&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

button,
input[type='button'],
input[type='submit'] {
  display: inline-block;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 0;
  background-color: transparent;
  color: inherit;
  cursor: pointer;
  padding: 0;
  outline: none;
}

button:disabled {
  opacity: .6;
  cursor: no-drop;
}

input:focus-visible {
  border: none;
  outline: none;
}

body {
  background: var(--bg-secondary);
  font-family: 'Poppins', sans-serif;
  scrollbar-width: auto;
  scrollbar-color: #E6D9B8 #1f1f1f;
}

article {
  width: 100%;
}

/* SCROLL */

*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

*::-webkit-scrollbar-track {
  background: radial-gradient(
    123.22% 129.67% at 100.89% -5.6%,
    #3a3a3a 0%,
    #1b1b1b 100%
  );
  border-radius: 100px;
}

*::-webkit-scrollbar-thumb {
  background: linear-gradient(91.26deg, #4DC7A0 19.13%, #3D6D65  65.96%);
  border-radius: 10px;
  border: 3px solid var(--bg-secondary);
}

:root {
  --primary: #ffffff;
  --text-secondary: #ffffff;
  --danger: #FF4141;
  --bg-primary: #E6D9B8; 
  --bg-secondary: #F9F3DD;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

/* LOADING */
.loading-div {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.5rem;
  margin: 15px;
  flex: 1;
}

.loading-screen {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 100;
  width: 100%;
  height: 100%;
  background: #E6D9B8;
}

.content-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 101;
}

.content-logo img {
  max-width: 80px;
}

.loader {
  position: relative;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: linear-gradient(#4DC7A0, #3D6D65, #4db6ac);
  animation: animate 1.2s linear infinite;
}

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 50px;
}

.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  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;
}

.loader span {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(#000000, #131313, #303030);/*background: linear-gradient(#303030, #606161, #f1f1f1);*/
}

.loader span:nth-child(1) {
  filter: blur(5px);
}

.loader span:nth-child(2) {
  filter: blur(10px);
}

.loader span:nth-child(3) {
  filter: blur(15px);
}

.loader span:nth-child(4) {
  filter: blur(20px);
}

/* AddToAny Share Button Styling */
.a2a_kit {
  text-align: center !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-top: 20px !important;
  padding: 15px !important;
  background: rgba(230, 217, 184, 0.15) !important;
  border-radius: 12px !important;
  border: 1px solid rgba(61, 109, 101, 0.1) !important;
}

.a2a_kit a {
  transition: all 0.3s ease !important;
  margin: 0 !important;
  border-radius: 8px !important;
  width: 44px !important;
  height: 44px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  position: relative !important;
  overflow: hidden !important;
}

.a2a_kit a:hover {
  transform: translateY(-3px) scale(1.05) !important;
  box-shadow: 0 6px 15px rgba(0,0,0,0.25) !important;
}

.a2a_kit .a2a_button_facebook {
  background: #1877F2 !important;
  color: white !important;
}

.a2a_kit .a2a_button_twitter {
  background: #1DA1F2 !important;
  color: white !important;
}

.a2a_kit .a2a_button_whatsapp {
  background: #25D366 !important;
  color: white !important;
}

.a2a_kit .a2a_button_google_plus {
  background: #DB4437 !important;
  color: white !important;
}

.a2a_kit .a2a_dd {
  background: #3D6D65 !important;
  color: #E6D9B8 !important;
}

/* Button responsive adjustments */
@media (max-width: 768px) {
  .btn-final {
    min-width: 140px !important;
    font-size: 0.6rem !important;
    padding: 10px 12px !important;
  }
  
  .a2a_kit {
    padding: 12px !important;
    gap: 6px !important;
  }
  
  .a2a_kit a {
    width: 38px !important;
    height: 38px !important;
  }
}

@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);
  }
}

@keyframes animate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}