

:root{
  --intense_black: #0A0A0A;
  --grey_black: #2e2c2d;
  --dark_grey: #241F20;
  --weak_dark_grey: #3a3737;
  --light_dark: #141112;
  --white: #ffffff;
  --padding10: 10px;
  --lightgrey: #F2F2F2;
  --lightPurple: #D1C7FE;
  --lightred: #FA6F71;
  --lightgreen: #7CB777;
  --lightblue: #57D0E6;
  --orange: #ffa500;
  --greyText: #aaaaaa;
  --SuperLightGrey: #F5F5F5;
  --lightGreenBackground: #F4F4F4;
  --blackRose: #0E100F;
  --elegantSharpFont: 'Oswald';
  --simplePleasentFont: 'Open Sans';
  --cinematicFont: 'Monoton';
  --mainScreenSharpFont: 'Playfair Display';
  --chillSimpleFont: 'Comfortaa';
  --roboto: 'roboto';
  --poopins: 'Poppins';
}


.hidden {
  opacity: 0;
  filter: blur(5px);
  transform: translateX(-100%);
}

/* Dodanie animacji dla klasy show */
.show{
  animation: showElement 1s ease-in-out forwards;
}

/* LOADER */

.preloader{
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 10000;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 1;
  transition: .7s;
}

.figuresContainer{
  width: auto;
  height: auto;
}

.loaderTitleContainer{
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loaderTitle{
  position: relative;
  width: 100%;
  height: auto;
  font-size: 50px;
  font-family: var(--mainScreenSharpFont);
  color: #2F3545;
  
}

.loaderTitle::after{
  content: "";
  position: absolute;
  bottom: -5px; /* Odległość od tekstu */
  left: 0;
  width: 80px; /* Długość kreski */
  height: 2px; /* Grubość kreski */
  background-color: #000000; /* Kolor kreski */
  
}

/* END OF LOADER SECTION */




html, body{
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  background: white !important;
}

.c-scrollbar_thumb {

  opacity: 1 !important;
  background: var(--grey_black) !important;
  border-radius: 10px !important;
  width: 8px !important;
}



.callMeBox{
  display: flex;
  position: fixed;
  bottom: 3%;
  right: 2%;
  background-color: black;
  width: auto;
  height: auto;
  padding: 15px;
  border-radius: 20px 20px 20px 8px;
  align-items: center;
  justify-content: center;
  z-index: 9910;
}
.callIcon i{
  font-size: 25px;
}

.callTextContainer{
  display: flex;
  flex-direction: column;
  margin-left: 15px;

}

.callMeText{
  display: flex;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-family: var(--simplePleasentFont);
}

.numberText{
  color: white;
  font-family: var(--simplePleasentFont);
}

.websiteContent{
  width: 100%;
  height: 100%;
  background-color: var(--white);
  z-index: 100;
  box-shadow: 0 50px 50px rgba(0, 0, 0, 0.3); /* Delikatny cień dla efektu */
  box-sizing: border-box;
}

.taskBar {
  box-sizing: border-box;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 75px;
  padding: 30px;
  border-bottom: 1px solid var(--lightgrey);
}

@media (max-width: 1100px) {
  .taskBar{
      background-color: var(--blackRose);
      position: fixed;
      top: 0;
      left: 0;
      height: 75px;
      z-index: 1000;
      border-bottom: none;
  }
  
}

.taskBar.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: white;
  box-shadow: 0px 0px 8px lightgray;

}


@media (max-width: 1100px) {
  .taskBar.scrolled {
      background-color: var(--blackRose);
      box-shadow: none;
      border-bottom: none;
  }
}






.taskBarContentContainer {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-color: 1px solid blue;
}


.navigationBar {
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 24px;
  width: fit-content;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-color: 1px solid blue;

}



.nav-link {
  margin-right: 25px;
  font-family: var(--simplePleasentFont);
  font-size: 20px;
  display: flex;
  color: var(--dark_grey);
  text-decoration: none;
  transition: 200ms;
  box-sizing: border-box;
  flex-wrap: nowrap;
  position: relative;
}

.nav-link i{
  font-size: 15px;
  color: var(--dark_grey);
  margin-left: 8px;
}


.nav-link::after{
  content: '';
  position: absolute;
  bottom: -12.5px;
  left: 50%;
  width: 0px;
  height: 0px;
  background-color: rgb(0, 0, 0);
  border-radius: 50%;
  transition: 300ms ease-out;
  
}

.nav-link.active::after {
  width: 0.3em;
  height: 0.3em;
}

.sessionsContainer {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  background-color: white;
  border: 1px solid lightgray;
  box-shadow: 0px 0px 8px lightgray;
  z-index: 10;
  width: 200px; /* Dostosuj do potrzeb */
  transition: 200ms;
  opacity: 0;
  visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
}

.sessionsContainer div {
  padding: 10px;
  white-space: nowrap;
}

.sessionsContainer div a{
  font-family: var(--roboto);
  font-size: 15px;
  color: var(--grey_black);
  text-decoration: none;
}

.sessionsContainer div:hover{
  background-color: var(--lightgrey);
}

.nav-link:hover {
  background-color: var(--lightgrey);
  border-radius: 7px;
  padding: 10px;
}








.hamburgerMenuIconContainer{
  width: fit-content;
  height: 75px;
  display: none;
  align-items: center;
  justify-content: flex-end;
  position: fixed;
  z-index: 100000000;
  top: 0;
  right: 0;
}



.menu {
  transform: scale(0.35);
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  padding: 0;
}
.line {
  fill: none;
  stroke: rgb(255, 255, 255);
  stroke-width: 5;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.line.openedSidebar{
  stroke: black;
}
.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 5;
}
.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 5;
}
.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 5;
}
.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 5;
}
.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 5;
}
.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 5;
}



.sideBarContainer {
  position: fixed;
  top: 75px;
  right: 0; 
  left: 0;
  width: 100%;
  height: fit-content;
  background-color: var(--blackRose);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999999;
  padding-top: 15px;
}



.sideBarContainer.open {
  display: flex;
}


.navigationSideBar {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 5px;
  align-items: center;
} 


.sideBar-link{
  width: 92%;
  height: 60px;
  margin-bottom: 15px;
  text-decoration: none;
  font-size: 18px;
  font-family: var(--roboto);
  color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
  border: 0.5px solid var(--grey_black);
  box-sizing: border-box;
  padding: 25px;
  font-weight: 400;
  opacity: 0; /* Domyślnie niewidoczne */
  transform: scale(0.9); /* Początkowa skala */
  transition: opacity 500ms ease, transform 500ms ease;
}

.offersContainer{
  width: 92%;
  height: fit-content;
}

.offerRow a{
  width: 100%;
  margin-bottom: 15px;
  padding: 5px;
  text-decoration: none;
  font-size: 16px;
  font-family: var(--roboto);
  color: rgb(255, 255, 255);
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
  box-sizing: border-box;
  font-weight: 400;
  opacity: 0;
  display: none;
  transform: scale(0.9); /* Początkowa skala */
  transition: opacity 500ms ease, transform 500ms ease;
}

.offerRow a.animated {
  animation: BoomEffect 0.65s forwards;
}

.offerRow a:hover{
  border: 1px solid rgb(65, 110, 255);
  transition: 150ms;
}

.sideBar-link svg{
  transform: scale(1.2);
}

.offers_menu svg{
  transform: scale(1);
  color: rgb(255, 255, 255);
}

@keyframes BoomEffect {
  0% {
      transform: scale(0.9);
      opacity: 0;
  }
  50% {
      transform: scale(1.1);
      opacity: 1;
  }
  100% {
      transform: scale(1);
      opacity: 1; /* Po zakończeniu animacji element jest widoczny */
  }
}

/* Gdy menu jest otwarte */
.sideBar-link.animated {
  animation: BoomEffect 0.65s forwards;
}


.sideBar-link:hover{
  border: 1px solid rgb(65, 110, 255);
  transition: 150ms;
}






.contactButtonContainer{
  display: flex;
  align-items: center;
  justify-content: center;
}


@media (max-width: 1100px) {
  .contactButtonContainer{
      display: none;
  }
  .hamburgerMenuIconContainer{
      display: flex;
  }

  .navigationBar{
      display: none;
  }
  .out_in_mobile{
      display: none;
  }

  
  
}

.superLinksSocial{
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.facebook{
  font-size: 22px;
  margin-right: 18px;
  transition: 0.3s;
  color: black;
}
.linkedin{
  font-size: 22px;
  margin-right: 18px;
  transition: 0.3s;
  color: black;
}

.instagram{
  font-size: 22px;
  margin-right: 40px;
  transition: 0.3s;
  color: black;
}

.facebook:hover{
  padding: 12px;
  background-color: var(--lightgrey);
  border-radius: 50%;
}
.linkedin:hover{
  padding: 12px;
  background-color: var(--lightgrey);
  border-radius: 50%;
}

.instagram:hover{
  padding: 12px;
  background-color: var(--lightgrey);
  border-radius: 50%;

}



.contactButton {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 140px;
  padding: 10px;
  border: 0 solid #e5e7eb;
  background-color: var(--dark_grey);
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  transition: transform .1s ease, background-color 0.3s ease-in, color 0.3s ease;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  font-family: var(--chillSimpleFont);
  font-size: 16px;
}

.contactButton::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -40%;
  width: 100%;
  height: 200%;
  background-color: #49ADF4;
  clip-path: circle(0% at 50% 100%);
  transition: clip-path 0.8s ease-in;
  z-index: -1;
}

.contactButton:hover::before {
  clip-path: circle(200% at 50% -50%);
}

.contactButton:hover {
  border: none;
  cursor: pointer;
}

@keyframes throwEffect {
  0% {
      transform: translateX(0);
  }
  50% {
      transform: translateX(-20px); /* Ruch w lewo */
  }
  75% {
      transform: translateX(10px); /* Ruch w prawo */
  }
  100% {
      transform: translateX(0); /* Powrót na miejsce */
  }
}

.throwAnimation {
  animation: throwEffect 0.25s ease-in-out;
}


.contactButton i{
  margin-right: 10px;
  text-decoration: none;
}



.logoContainer_Navigation{
  width: fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  width: auto; /* Upewnij się, że kontener ma odpowiednią szerokość */
}




.websiteLogo{
  margin-right: 12px;
  height: 65px;
  width: 65px;
  border-radius: 24px;
}



.logoText {
  margin-left: 15px;
  flex-wrap: nowrap;
  font-weight: bold;
  font-size: 18px;
  color: var(--light_dark);
  font-family: 'Open Sans';
  margin: 0;
  text-decoration: none;

}


@media (max-width: 1100px) {

  .logoContainer_Navigation{
      width: fit-content;
      height: fit-content;
      display: flex;
      position: fixed;
      z-index: 100000000;
      display: flex;
      top: 15px;
      left: 25px;
  }

  .websiteLogo{
      width: 50px;
      height: 50px;
      margin-right: 0px;
      border: 2.5px solid var(--grey_black);
      border-radius: 50%;
  }
  
  
}

.textSuperLink{
  text-decoration: none;
}
.iconSuperLink img{
  margin-left: 10px;
  width: 35px;
  height: 35px;
}


/* CONTENT SECTION START */
/* CONTENT SECTION START */
/* CONTENT SECTION START */
/* CONTENT SECTION START */

.websiteValueContentContainer{
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}


.contactSection{
    width: 100%;
    height: 100vh;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1920px;
}

@media (max-width: 1300px) {
  .contactSection{
    flex-direction: column;
    height: 155vh;
  }
  
}
.contactFirstContainer{
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
}

.contactImageContainer{
  width: 650px;
  height: 650px;
  border-radius: 24px;
  background-image: url(contact_images/contactUsImageTest.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


@media (max-width: 1300px) {
  .contactFirstContainer{
    width: 100%;
    height: 40%;
  }
  .contactImageContainer{
    width: 450px;
    height: 450px;
    align-items: bottom;
  }
}


@media (max-width: 1100px) {
  .contactImageContainer{
    width: 350px;
    height: 350px;
  }
  .contactFirstContainer{
    align-items: flex-end;
    justify-content: center;
  }
}






.contactSecondContainer{
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
}

.contactContentBox{
  width: 60%;
  height: 70%;
  display: flex;
  align-items: center;
  flex-direction: column;
  max-width: 550px;

}





@media (max-width: 1300px) {
  .contactSecondContainer{
    width: 100%;
    height: 60%;
    justify-content: center;
    transform: scale(0.9);
  }

}


@media (max-width: 600px) {
  .contactContentBox{
    width: 100%;
    height: 100%;
  }
}


.contactTxtBox{
    margin-left: 55px;
    width: 100%;
    height: 20%;
    display: flex;
    flex-direction: column;
}

@media (max-width: 1300px) {
  .contactTxtBox{
    margin-left: 40px;
  }
}



.inputsContainer{
    width: 90%;
    height: 80%;
    display: flex;
    flex-direction: column;
}

.contactTitle{
    font-size: 40px;
    font-weight: bold;
    color: var(--dark_grey);
    font-family: var(--roboto);

}

.contactDesc{
    margin-top: 12px;
    font-size: 16px;
    font-weight: bold;
    color: var(--grey_black);
    font-family: var(--chillSimpleFont);
}

@media (max-width: 400px) {
  .contactTxtBox{
    margin-left: 40px;
    margin-bottom: 40px;
  }

  .contactDesc{
    font-size: 13px;
  }
}

.emailSuperLink{
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    color: #5046E5;
    font-family: var(--chillSimpleFont);
}


.contactNamesBox{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.contactFirstNameBox{
    position: relative;
    width: 50%;
    height: 70px;
    box-sizing: border-box;
}


.contactSecondNameBox{
    position: relative;
    width: 50%;
    height: 70px;
    box-sizing: border-box;
}

.firstNameTxt{
    width: 100%;
    font-size: 14px;
    font-family: var(--chillSimpleFont);
    color: var(--dark_grey);
    font-weight: bold;
}

.secondNameTxt{
    width: 100%;
    font-size: 14px;
    font-family: var(--chillSimpleFont);
    color: var(--dark_grey);
    font-weight: bold;
}

.firstName{
    
    width: 100%;
    height: 100%;
    margin-top: 7px;
    border: 1px solid var(--greyText);
    border-radius: 24px;
    padding: 9px;
    box-sizing: border-box;
    transition: 0.3s;
    padding-left: 50px; /* Przestrzeń na ikonę */
}

.firstName:focus{
    border: 1px solid var(--greyText);
    box-shadow: 0 0px 4px hsl(244, 75%, 59%);
    outline: none;
    font-weight: bold;
}


.inputFirstNameBox{
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 60%;
}

.inputFirstNameBox::after {
    content: '\f007'; /* Kod ikony FontAwesome dla użytkownika */
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
    position: absolute;
    top: 3px;
    left: 20px;
    pointer-events: none;
    color: var(--grey_black);
    z-index: 10;
    font-size: 23px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}




.secondName{
    margin-top: 7px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--greyText);
    border-radius: 24px;
    padding: 9px;
    box-sizing: border-box;
    transition: 0.3s;
    padding-left: 50px;
}

.secondName:focus{
    border: 1px solid var(--greyText);
    box-shadow: 0 0px 4px hsl(244, 75%, 59%);
    outline: none;
    font-weight: bold;
}


.inputSecondNameBox{
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 60%;
}

.inputSecondNameBox::after{
    content: '\f007';
    font-family: 'Font Awesome 5 free';
    font-weight: 400;
    position: absolute;
    top: 3px;
    left: 20px;
    pointer-events: none;
    color: var(--grey_black);
    z-index: 10;
    font-size: 23px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;

}


.emailBox{
    margin-top: 15px;
    width: 100%;
    height: 70px;
}

.emailAdressTxt{
    width: 100%;
    font-size: 14px;
    font-family: var(--chillSimpleFont);
    color: var(--dark_grey);
    font-weight: bold;
}

.email{
    margin-top: 7px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--greyText);
    border-radius: 24px;
    padding: 9px;
    box-sizing: border-box;
    transition: 0.3s;
    padding-left: 50px;
}

.email:focus{
    border: 1px solid var(--greyText);
    box-shadow: 0 0px 4px hsl(244, 75%, 59%);
    outline: none;
    font-weight: bold;
}



.inputEmailAdressBox{
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 60%;
}


.inputEmailAdressBox::after{
    content: '\f0e0';
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
    position: absolute;
    top: 3px;
    left: 20px;
    pointer-events: none;
    color: var(--grey_black);
    z-index: 10;
    font-size: 23px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}


.phoneBox{
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 15px;
    width: 100%;
    height: 70px;
    flex-direction: column;
}

.phoneTxt{
    width: 100%;
    font-size: 14px;
    font-family: var(--chillSimpleFont);
    color: var(--dark_grey);
    font-weight: bold;
}

.phone{
    width: 100%;
    height: 100%;
    border: 1px solid var(--greyText);
    border-radius: 24px;
    padding: 9px;
    box-sizing: border-box;
    transition: 0.3s;
    border-radius: 0px 24px 24px 0px;
    flex-grow: 1;
}

.selectPhoneBox{
    margin-top: 7px;
    width: 100%;
    height: 60%;
    display: flex;
}


.countryCodeSelect {
    width: 70px;
    border: 1px solid var(--greyText);
    border-radius: 24px 0 0 24px;
    padding: 5px;
    background-color: #ffffff;
    cursor: pointer;
    border-right: none;
    color: var(--dark_grey);
}


.phone:focus{
    border: 1px solid var(--greyText);
    box-shadow: 0 0px 4px hsl(244, 75%, 59%);
    outline: none;
    font-weight: bold;
}



.descBox{
    margin-top: 15px;
    width: 100%;
    height: 235px;
}

@media (max-width: 400px) {
  .descBox{
    margin-top: 15px;
    width: 100%;
    height: 170px;
  }
}

.descTxt{
    width: 100%;
    font-size: 14px;
    font-family: var(--chillSimpleFont);
    color: var(--dark_grey);
    font-weight: bold;
}

.description{
    margin-top: 7px;
    width: 100%;
    height: 60%;
    border: 1px solid var(--greyText);
    border-radius: 24px;
    padding: 12px;
    box-sizing: border-box;
    text-align: left; /* Wyrównanie tekstu do lewej */
    overflow-y: auto; /* Pasek przewijania w pionie */
    resize: none; /* Wyłączenie możliwości zmiany rozmiaru */
    font-family: var(--chillSimpleFont);
    transition: 0.3s;
}

.description:focus{
    border: 1px solid var(--greyText);
    box-shadow: 0 0px 4px hsl(244, 75%, 59%);
    outline: none;
}


.buttonContainer{
    width: 100%;
    height: 14%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.buttonContainer button{
    height: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.loading-bars{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    rotate: 180deg;
    height: 30px;
    transform: translateY(15%);
}

.bar{
    max-height: 16px;
    width: 10px;
    background: rgb(255, 255, 255);
    margin: 3px;
    animation: wave 1.7s ease-in-out infinite;
    border-radius: 20px;
}

.bar:nth-child(2){
  animation-delay: 0.15;
}

.bar:nth-child(3){
  animation-delay: 0.3s;
}

.bar:nth-child(4){
  animation-delay: 0.45s;
}

@keyframes wave{

  0%{
    height: 6px;
  }

  50%{
    height: 16px;
  }

  100%{
    height: 6px;
  }

}




.sendEmail{
    width: 95%;
    background-color: #5046E5;
    color: white;
    padding: 12px;
    font-size: 16px;
    font-family: var(--chillSimpleFont);
    font-weight: bold;
    border-radius: 24px;
    border: none;
}

.arrowRight{
    margin-left: 10px;
    transition: .3s;
}

.sendEmail:hover .arrowRight{
    margin-left: 20px;
}


.disabledButton {
    cursor: not-allowed;
}







.loader {
    --path: #2F3545;
    --dot: #FA6F71;
    --duration: 3s;
    width: 44px;
    height: 44px;
    position: relative;
  }
  .loader:before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: absolute;
    display: block;
    background: var(--dot);
    top: 37px;
    left: 19px;
    transform: translate(-18px, -18px);
    -webkit-animation: dotRect var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
            animation: dotRect var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
  }
  .loader svg {
    display: block;
    width: 100%;
    height: 100%;
  }
  .loader svg rect,
  .loader svg polygon,
  .loader svg circle {
    fill: none;
    stroke: var(--path);
    stroke-width: 10px;
    stroke-linejoin: round;
    stroke-linecap: round;
  }
  .loader svg polygon {
    stroke-dasharray: 145 76 145 76;
    stroke-dashoffset: 0;
    -webkit-animation: pathTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
            animation: pathTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
  }
  .loader svg rect {
    stroke-dasharray: 192 64 192 64;
    stroke-dashoffset: 0;
    -webkit-animation: pathRect 3s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
            animation: pathRect 3s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
  }
  .loader svg circle {
    stroke-dasharray: 150 50 150 50;
    stroke-dashoffset: 75;
    -webkit-animation: pathCircle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
            animation: pathCircle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
  }
  .loader.triangle {
    width: 48px;
  }
  .loader.triangle:before {
    left: 21px;
    transform: translate(-10px, -18px);
    -webkit-animation: dotTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
            animation: dotTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
  }
  
  @-webkit-keyframes pathTriangle {
    33% {
      stroke-dashoffset: 74;
    }
    66% {
      stroke-dashoffset: 147;
    }
    100% {
      stroke-dashoffset: 221;
    }
  }
  
  @keyframes pathTriangle {
    33% {
      stroke-dashoffset: 74;
    }
    66% {
      stroke-dashoffset: 147;
    }
    100% {
      stroke-dashoffset: 221;
    }
  }
  @-webkit-keyframes dotTriangle {
    33% {
      transform: translate(0, 0);
    }
    66% {
      transform: translate(10px, -18px);
    }
    100% {
      transform: translate(-10px, -18px);
    }
  }
  @keyframes dotTriangle {
    33% {
      transform: translate(0, 0);
    }
    66% {
      transform: translate(10px, -18px);
    }
    100% {
      transform: translate(-10px, -18px);
    }
  }
  @-webkit-keyframes pathRect {
    25% {
      stroke-dashoffset: 64;
    }
    50% {
      stroke-dashoffset: 128;
    }
    75% {
      stroke-dashoffset: 192;
    }
    100% {
      stroke-dashoffset: 256;
    }
  }
  @keyframes pathRect {
    25% {
      stroke-dashoffset: 64;
    }
    50% {
      stroke-dashoffset: 128;
    }
    75% {
      stroke-dashoffset: 192;
    }
    100% {
      stroke-dashoffset: 256;
    }
  }
  @-webkit-keyframes dotRect {
    25% {
      transform: translate(0, 0);
    }
    50% {
      transform: translate(18px, -18px);
    }
    75% {
      transform: translate(0, -36px);
    }
    100% {
      transform: translate(-18px, -18px);
    }
  }
  @keyframes dotRect {
    25% {
      transform: translate(0, 0);
    }
    50% {
      transform: translate(18px, -18px);
    }
    75% {
      transform: translate(0, -36px);
    }
    100% {
      transform: translate(-18px, -18px);
    }
  }
  @-webkit-keyframes pathCircle {
    25% {
      stroke-dashoffset: 125;
    }
    50% {
      stroke-dashoffset: 175;
    }
    75% {
      stroke-dashoffset: 225;
    }
    100% {
      stroke-dashoffset: 275;
    }
  }
  @keyframes pathCircle {
    25% {
      stroke-dashoffset: 125;
    }
    50% {
      stroke-dashoffset: 175;
    }
    75% {
      stroke-dashoffset: 225;
    }
    100% {
      stroke-dashoffset: 275;
    }
  }
  .loader {
    display: inline-block;
    margin: 0 16px;
  }
