img[alt="www.000webhost.com"] {
  display: none;
}
* {
  box-sizing: border-box;
}
html{
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background:#fff;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  padding:0;
}
a {
  text-decoration: none;
}
p,span{
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}
button{
	cursor: pointer;
  padding: 0;
  margin: 0;
}
select:focus,input:focus,button:focus {
  cursor: pointer;
  outline: none;
}

@font-face {
  font-family: 'Roboto';
  src: url('fonts/roboto/Roboto-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Roboto';
  src: url('fonts/roboto/Roboto-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Roboto';
  src: url('fonts/roboto/Roboto-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'Roboto';
  src: url('fonts/roboto/Roboto-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: 'Roboto';
  src: url('fonts/roboto/Roboto-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: 'Roboto';
  src: url('fonts/roboto/Roboto-BlackItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
}
@font-face {
  font-family: 'Roboto';
  src: url('fonts/roboto/Roboto-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Roboto';
  src: url('fonts/roboto/Roboto-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: 'Roboto';
  src: url('fonts/roboto/Roboto-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Roboto';
  src: url('fonts/roboto/Roboto-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: 'Roboto';
  src: url('fonts/roboto/Roboto-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: 'Roboto';
  src: url('fonts/roboto/Roboto-ThinItalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
}
:root {
  --primary-color-light: #4c84af;
  --primary-color: #005596;
  --primary-color-dark: #002e63;
  --red: #8b0101;
  --blue: #005596;
  --dark-blue: #002e63;
  --light-blue: #4c84af;
  --pink: #d80651;
  --light-green: #03ac13;
  --green:#35b972;
  --dark-green: #004d43;
  --transparent-black:rgba(53,58,77,.8);
  --light-black:#262b3c;
  --black:#1c1f2d;
  --dark-black:#1c1f2d;
  --default-font: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.light-red-bg{ background:#f44 }
.red-bg{ background:red }
.dark-red-bg{ background:var(--red) }
.light-green-bg{ background:var(--light-green) }
.green-bg{ background:var(--green) }
.dark-green-bg{ background:var(--dark-green) }
.light-blue-bg{ background:var(--light-blue) }
.blue-bg{ background:var(--blue) }
.dark-blue-bg{ background:var(--dark-blue) }

.light-red-cl{ color:#f44 }
.red-cl{ color:red }
.dark-red-cl{ color:var(--red) }
.light-green-cl{ color:var(--light-green) }
.green-cl{ color:var(--green) }
.dark-green-cl{ color:var(--dark-green) }
.light-blue-cl{ color:var(--light-blue) }
.blue-cl{ color:var(--blue) }
.dark-blue-cl{ color:var(--dark-blue) }

.btn-load{
position: relative;
overflow: hidden;
}
.btn-load:disabled::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
z-index:1;
background:rgba(255,255,255,0.3);
}
















.app-splash-screen-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 99;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  row-gap: 20px;
  transition: .5s;
}
.app-splash-screen-wrapper.show{
display:flex;
}
.app-splash-screen-wrapper .body-wrapper{
display: none;
align-items: center;
justify-content: center;
flex-direction: column;
flex-wrap: wrap;
row-gap: 20px;
padding:0;
}
.app-splash-screen-wrapper .body-wrapper.show{
display: flex;
}
.app-splash-screen-wrapper .body-wrapper.loading .app-logo{
width: 120px;
transition: .2s;
transition-delay:.5s;
transform:translateY(-100%);
opacity:0;
}
.app-splash-screen-wrapper .body-wrapper.loading .app-logo#coloured-logo{display:block;}
.app-splash-screen-wrapper .body-wrapper.loading .app-logo#white-logo{display:none;}

.app-splash-screen-wrapper.show-logo .body-wrapper.loading .app-logo{
transform:translateY(0px);
opacity:1;
}

.app-splash-screen-wrapper .body-wrapper.loading .loading-wrapper{
display: flex;
align-items: center;
justify-content: center;
width:45px;
height: 30px;
}
.app-splash-screen-wrapper .body-wrapper.loading .loading-wrapper .bar {
width: 2px;
height: 30px;
background: #999;
display: inline-block;
transform-origin: bottom center;
border-radius: 20px 20px 0 0;
animation: splash_screen_loader 1.2s linear infinite;
margin-left: 4px;
}
.app-splash-screen-wrapper .body-wrapper.loading .loading-wrapper .bar1 {animation-delay: 0.1s;margin-left: 0px;}
.app-splash-screen-wrapper .body-wrapper.loading .loading-wrapper .bar2 {animation-delay: 0.2s;}
.app-splash-screen-wrapper .body-wrapper.loading .loading-wrapper .bar3 {animation-delay: 0.3s;}
.app-splash-screen-wrapper .body-wrapper.loading .loading-wrapper .bar4 {animation-delay: 0.4s;}
.app-splash-screen-wrapper .body-wrapper.loading .loading-wrapper .bar5 {animation-delay: 0.5s;}
.app-splash-screen-wrapper .body-wrapper.loading .loading-wrapper .bar6 {animation-delay: 0.6s;}
.app-splash-screen-wrapper .body-wrapper.loading .loading-wrapper .bar7 {animation-delay: 0.7s;}
.app-splash-screen-wrapper .body-wrapper.loading .loading-wrapper .bar8 {animation-delay: 0.8s;}


.app-splash-screen-wrapper .body-wrapper.no-connection{
gap:0;
}
.app-splash-screen-wrapper .body-wrapper.no-connection .no-connection-image{
width: min(calc(100% - 40px), 250px);
}
.app-splash-screen-wrapper .body-wrapper.no-connection .text{
font-family: 'FontAwesome';
font-size: 19px;
color: #444;
font-weight: 400;
letter-spacing: 0.4mm;
margin:10px 0 0;
}
.app-splash-screen-wrapper .body-wrapper.no-connection .retry-button {
  font-family: sans-serif;
  font-size: 15px;
  color: dodgerblue;
  font-weight: 400;
  background: #f8f8f8;
  padding: 0 20px;
  height:30px;
  display:flex;
  align-items: center;
  justify-content: center;
  flex-direction:row;
  flex-wrap:wrap;
  gap:5px;
  box-shadow: -1px -1px 5px 0px rgb(30 144 255 / 68%);
  border: 1px solid rgb(30 144 255 / 68%);
  border-radius: 10px;
  margin: 15px 0 0;
}
.app-splash-screen-wrapper .body-wrapper.no-connection .retry-button:hover {
  box-shadow: 0 0 1px 0px rgb(30 144 255 / 68%);
  transform:translateX(-1px) translateY(-1px);
  color: #f55;
}
.app-splash-screen-wrapper .body-wrapper.no-connection .retry-button .icon{
font-size:13px;
}


@keyframes splash_screen_loader {
  0% {
    transform: scaleY(0.1);
  }
  50% {
    transform: scaleY(1);
    background: #042457;
  }
  100% {
    transform: scaleY(0.1);
    background: transparent;
  }
}

/* DARK MODE */
body.dark-theme .app-splash-screen-wrapper{
background:var(--black);
}
body.dark-theme .app-splash-screen-wrapper .body-wrapper.loading .app-logo#coloured-logo{display:none;}
body.dark-theme .app-splash-screen-wrapper .body-wrapper.loading .app-logo#white-logo{display:block;}
body.dark-theme .app-splash-screen-wrapper .body-wrapper.loading .loading-wrapper {
  filter:invert(1) grayscale(1) brightness(2);
}
body.dark-theme .app-splash-screen-wrapper .body-wrapper.no-connection .no-connection-image { filter: invert(1) brightness(1.5); -webkit-filter: invert(1) brightness(1.5);
}
body.dark-theme .app-splash-screen-wrapper .body-wrapper.no-connection .text{
color:rgba(255, 255, 255, 0.8);
}
body.dark-theme .app-splash-screen-wrapper .body-wrapper.no-connection .retry-button {
background:rgba(0, 0, 0, 0.1);
box-shadow: -1px -1px 5px 0px rgb(30 144 255 / 40%);
border: 1px solid rgb(30 144 255 / 68%);
}
  





.website-top-navigation{
width:100%;
height:100px;
transition:0.2s;
position:fixed;
top:0;
left:0;
z-index:5;
background:#fff;
overflow: hidden;
}
.website-top-navigation .main-section{
height:60px;
width:100%;
display:flex;
align-items: center;
justify-content: space-between;
flex-direction: row;
flex-wrap:wrap;
gap:5px;
position: relative;
overflow: visible;
}
.website-top-navigation .main-section .left-section{
display:flex;
align-items: center;
justify-content: center;
flex-direction: row;
flex-wrap:wrap;
gap:10px;
height:100%;
}
.website-top-navigation .main-section .left-section .side-navigation-toggle-button{
width:60px;
height:60px;
display:flex;
align-items:center;
justify-content: center;
flex-direction:column;
flex-wrap:wrap;
gap: 4px;
background: transparent;
border: none;
padding:0;
}
.website-top-navigation .main-section .left-section .side-navigation-toggle-button .bar{
width: 25px;
height: 2px;
border-radius: 2px;
background: #444;
transition: 0.5s;
}
.website-top-navigation .main-section .left-section .side-navigation-toggle-button.show .bar.top{
transform: translateY(6px) rotate(45deg);
}
.website-top-navigation .main-section .left-section .side-navigation-toggle-button.show .bar.middle{
opacity:0;
}
.website-top-navigation .main-section .left-section .side-navigation-toggle-button.show .bar.bottom{
transform: translateY(-6px) rotate(-45deg);
}

.website-top-navigation .main-section .left-section .website-logo {
height:40px;
}
.website-top-navigation .main-section .left-section .website-title {
font-family: 'FontAwesome';
letter-spacing:0.5mm;
color:#333;
font-size:14px;
}

.website-top-navigation .main-section .right-section{
height:100%;
display:flex;
align-items: center;
justify-content: center;
flex-direction: row;
flex-wrap:wrap;
gap:0;
}
.website-top-navigation .main-section .right-section .button{
display:flex;
align-items: center;
justify-content: center;
flex-direction: row;
flex-wrap:wrap;
gap:0;
width:50px;
height:100%;
color:#333;
font-size:15px;
transition:0.2s;
border:none;
background: transparent;
position: relative;
}
.website-top-navigation .main-section .right-section .button#toggle-cart-button .number{
position: absolute;
top: 10px;
right: 0;
left: 3px;
margin: auto;
border-radius: 50%;
background: dodgerblue;
width: 15px;
height: 15px;
display: flex;
align-items: center;
justify-content: center;
font-size: 7px;
font-weight: 550;
color: white;
box-shadow: 0px -1px 3px rgba(0, 0, 0, 0.2);
transition: 0.2s;
font-family: 'fontawesome';
}

.website-top-navigation .main-section .search-field-section {
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 0;
  transition: 0.1s;
  transform: translateX(100%);
}
.website-top-navigation .main-section .search-field-section.show {
transform: translateX(0px);
}
.website-top-navigation .main-section .search-field-section .back-button{
width:60px;
height:100%;
display:flex;
align-items: center;
justify-content: center;
background:transparent;
border: none;
color:#444;
font-size:15px;
}
.website-top-navigation .main-section .search-field-section .input-field{
width:calc(100% - 60px);
height:100%;
border: none;
background:transparent;
color:#444;
font-size:15px;
font-family: 'roboto' , sans-serif;
font-weight:400;
padding:0;
}









.website-top-navigation .scroll-tab-section {
width:100%;
overflow-x:auto;
height:40px;
overflow-y:hidden;
border-top:0.1mm solid #d1d1d1;
border-bottom:0.1mm solid #d1d1d1;
scroll-behavior: smooth;
}
.website-top-navigation .scroll-tab-section::-webkit-scrollbar{
display:none;
}
.website-top-navigation .scroll-tab-section .content-wrapper{
display: flex;
align-items: center;
justify-content: flex-start;
flex-direction: row;
flex-wrap: nowrap;
gap: 15px;
overflow: visible;
white-space: nowrap;
height: 100%;
padding: 5px 20px;
}
.website-top-navigation .scroll-tab-section .content-wrapper .button {
  height: 100%;
  border-radius: 20px;
  color: #444;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  font-family: 'roboto', sans-serif;
  background: transparent;
  border: none;
  margin: 0;
  padding: 0;
  transition: 0.1s;
}
.website-top-navigation .scroll-tab-section .content-wrapper .button.active{
padding:0 15px;
color:#fff;
background:#191919;
font-weight:550;
}
.website-top-navigation .scroll-tab-section .content-wrapper .padding-element{
height:100%;
padding:0 20px 0 0;
display: block;
}














.side-navigation{
width:min(65% , 300px);
height:calc(100% - 100px);
position:fixed;
bottom:0;
left:min(calc(-65% - 10px) , calc(300px - 10px));
background:#fff;
z-index:5;
box-shadow:0 10px 8px 1px rgba(0,0,0,0.1);
display:flex;
align-items:center;
justify-content: flex-start;
flex-wrap:nowrap;
align-content:center;
flex-direction:column;
gap:20px;
padding:0;
transition:0.5s;
overflow-y: auto;
overflow-x: hidden;
}
.side-navigation::-webkit-scrollbar{
width:2px;
}
.side-navigation::-webkit-scrollbar-track{
background:transparent;
}
.side-navigation::-webkit-scrollbar-thumb {
background: #d1d1d1;
border-radius: 5px;
}
.side-navigation.show{
left:0;
}

.side-navigation .button-section {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  align-content: flex-start;
  flex-direction: row;
  padding: 15px 30px 0;
  transition: 0.5s;
}
.side-navigation .button-section .button{
width:100%;
height:35px;
display:flex;
flex-direction:row;
flex-wrap:wrap;
align-items:center;
justify-content:flex-start;
background:transparent;
border:none;
padding:0;
transition:0.2s;
}
.side-navigation .button-section .button:hover{
transform:scale(1.05);
}
.side-navigation .button-section .button.hover{
background:#444;
margin:5px 0;
padding:0 8px;
border-radius:5px;
}
.side-navigation .button-section .button.hover.expand{
margin:5px 0 0;
}

.side-navigation .button-section .button.hover.expand+.sub-content-wrapper{
max-height:100%;
}
.side-navigation .button-section .button .left-icon{
width: 20px;
font-size: 15px;
color:#555;
display:flex;
align-items: center;
justify-content: flex-start;
}
.side-navigation .button-section .button.hover .left-icon{
color:#333;
}
.side-navigation .button-section .button .text{
font-family:var(--default-font);
color:#333;
font-size: 15px;
width:calc(100% - 20px);
text-align: left;
padding:0 0 0 5px;
}
.side-navigation .button-section .button.hover .text{
color:#333;
}
.side-navigation .button-section .button.expand .text{
width:calc(100% - 40px);
}
.side-navigation .button-section .button .right-icon{
width: 20px;
font-size: 15px;
color:rgba(255,255,255,0.5);
display:flex;
align-items: center;
justify-content: flex-end;
transition:0.2s;
font-size:12px;
}
.side-navigation .button-section .button.expand.hover .right-icon{
transform: rotate(-180deg);
justify-content: flex-start;
color:#333;
}

.side-navigation .button-section .button.active .left-icon{
color:var(--green) !important;
}
.side-navigation .button-section .button.active .text{
color:var(--green) !important;
}
.side-navigation .button-section .button.active .right-icon{
color:var(--green) !important;
}



.side-navigation .button-section .sub-content-wrapper{
width:100%;
padding:0 0 0 20px;
display:flex;
align-items: center;
justify-content: center;
flex-direction: column;
flex-wrap: wrap;
max-height:0;
transition:0.2s;
overflow: hidden;
}
.side-navigation .button-section .sub-content-wrapper .button{
gap:10px;
}
.side-navigation .button-section .sub-content-wrapper .button .left-icon{
width:auto;
font-size: unset;
}
.side-navigation .button-section .sub-content-wrapper .button .text{
width:auto;
margin:-2px 0 0;
}

.side-navigation hr{
width:100%;
border:none;
border-top:1px dashed #d1d1d1;
margin:15px 0;
}

.side-navigation #google_translate_element{
text-align: center;
color: #eee;
font-family: sans-serif;
display: block;
height:35px;
width:100%;
overflow:hidden;
display:flex;
flex-direction:row;
flex-wrap:wrap;
align-items:center;
justify-content:flex-start;
transition:0.2s;
}
.side-navigation #google_translate_element .left-icon {
width: 20px;
height: 100%;
font-size: 15px;
color: #555;
display: flex;
align-items: center;
justify-content: flex-start;
transition:0.2s;
}
.side-navigation #google_translate_element .goog-te-gadget{
height:100%;
width:calc(100% - 20px);
}
.side-navigation #google_translate_element .goog-te-gadget>div{
height:100%;
}
.side-navigation #google_translate_element .goog-te-combo{
height: 100%;
width:100%;
display: block;
border-radius:5px;
font-family:var(--default-font);
color:#333;
font-size: 15px;
background: transparent;
border: none;
margin:0;
transition:0.2s;
}
.side-navigation #google_translate_element .goog-te-combo::-webkit-scrollbar{
width:2px;
}
.side-navigation #google_translate_element .goog-te-combo::-webkit-scrollbar-track{
background:#f5f5f5;
}
.side-navigation #google_translate_element .goog-te-combo::-webkit-scrollbar-thumb {
background: #e5e5e5;
border-radius: 5px;
}

.side-navigation #google_translate_element .goog-te-combo option{
background:#fff;
color:#333;
}
.side-navigation #google_translate_element .goog-te-combo:focus{
outline:none;
}

.side-navigation #google_translate_element:hover .left-icon{
color:#333;
}
.side-navigation #google_translate_element:hover .goog-te-combo{
color:#333;
}

.side-navigation #google_translate_element a{
color:#333;
}
#goog-gt-vt{
display: none;
}
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf{
display: none;
}


.side-navigation .logo-wrapper{
height:100%;
width:100%;
display:flex;
align-items: center;
justify-content: center;
padding:0 30px 50px;
}
.side-navigation .logo-wrapper .logo{
width:min(200px , 100%);
}









.search-suggestion-section {
  width: calc(100% - 40px);
  height: fit-content;
  max-height: calc(100% - 130px);
  background: #fff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  position: fixed;
  top: 110px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: column;
  gap: 10px;
  z-index: 4;
  overflow: hidden;
  padding: 30px;
}
.search-suggestion-section.show {
display: flex;
}
.search-suggestion-section .heading{
  width:100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.search-suggestion-section .heading .text{
  font-family: 'roboto' , sans-serif;
  font-size:15px;
  text-align: left;
  color:#444;
}
.search-suggestion-section .heading .close-button{
  font-size:15px;
  color:#f44;
  border:none;
  background:transparent;

}
.search-suggestion-section #data {
  width:100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  flex-direction: row;
  gap:10px;
  overflow: auto;
}
.search-suggestion-section #data .content-wrapper {
  width: 100%;
  border: 1px solid #e5e5e5;
  border-radius:10px;
  background:transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap:0;
  padding:0;
  overflow:hidden;
}
.search-suggestion-section #data .content-wrapper .image-wrapper{
  width:100px;
  height:70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-suggestion-section #data .content-wrapper .image-wrapper .image{
  width:100%;
  height:100%;
  object-fit: cover;
  filter:brightness(0.7);
}
.search-suggestion-section #data .content-wrapper .text-wrapper{
  width:calc(100% - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row;
  gap:0;
  padding:10px 15px;
}
.search-suggestion-section #data .content-wrapper .text-wrapper .title{
  width:100%;
  font-family: 'roboto' , sans-serif;
  font-size:15px;
  text-align: left;
  color:#444;
}
.search-suggestion-section #data .not-found-text{
  width: 100%;
  font-family: 'roboto', sans-serif;
  font-size: 15px;
  text-align: center;
  color: #28314fa6;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 15px;
  margin: 15px 0 0;
  font-weight: 550;
}
.search-suggestion-section #data .not-found-text .icon{
  font-size:50px;
}

.website-floating-social-media-loading{
  position: fixed;
  bottom: 15px;
  left: 15px;
  background: rgba(0, 0, 0, 0.2);
  height: 60px;
  width: 60px;
  border-radius: 50%;
  pointer-events: all;
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0;
  z-index: 10;
  backdrop-filter: blur(5px);
}
.website-floating-social-media{
  position: fixed;
  bottom: 15px;
  left: 15px;
  pointer-events: none;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column-reverse;
  flex-wrap: nowrap;
  gap: 10px;
  z-index: 10;
}
.website-floating-social-media .row-section{
  padding:0 0 0 7.5px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  transform:translateX(calc(-100% - 20px));
  transition:0.2s;
}
.website-floating-social-media .row-section.main{
  transform:translateX(0px);
}
.website-floating-social-media .row-section .btn{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap:0;
  border-radius:50%;
  border:none;
  color:#fff;
  font-size:22px;
  height:40px;
  width:40px;
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.1);
  transition:0.2s;
  pointer-events: all;
}

.website-floating-social-media .row-section.main .btn{
  background:var(--primary-color);
  transition:0.6s;
  height:55px;
  width:55px;
}
.website-floating-social-media .row-section.whatsapp .btn{
  background:#075E54;
}
.website-floating-social-media .row-section.telegram .btn{
  background:var(--light-blue);
}
.website-floating-social-media .row-section.instagram .btn{
  background:linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
}
.website-floating-social-media .row-section.email .btn{
  background:#EE4D2D;
}

.website-floating-social-media.show .row-section.main .btn{
  transform:rotate(405deg);
}
.website-floating-social-media.show .row-section{
  transform:translateX(0);
}

.website-floating-social-media .row-section.main{
  transition-delay:0s;
  padding:0;
}
.website-floating-social-media .row-section.whatsapp{
  transition-delay:0.4s;
}
.website-floating-social-media .row-section.telegram{
  transition-delay:0.3s;
}
.website-floating-social-media .row-section.instagram{
  transition-delay:0.2s;
}
.website-floating-social-media .row-section.email{
  transition-delay:0.1s;
}

.website-floating-social-media.show .row-section~.row-section.main{
  transition-delay:0s;
}
.website-floating-social-media.show .row-section~.row-section.whatsapp{
  transition-delay:0.1s;
}
.website-floating-social-media.show .row-section~.row-section.telegram{
  transition-delay:0.2s;
}
.website-floating-social-media.show .row-section~.row-section.instagram{
  transition-delay:0.3s;
}
.website-floating-social-media.show .row-section~.row-section.email{
  transition-delay:0.4s;
}








.website-copied-modal {
background: var(--dark-green);
height: 60px;
border-radius: 30px 0 0 30px;
border: none;
width: 150px;
position: fixed;
top: 70px;
overflow: hidden;
display: flex;
align-items: center;
color: white;
font-size: 11px;
font-family: "fontawesome";
letter-spacing: 0.4mm;
padding: 0 0 0 30px;
transition: 1s;
right: -150px;
opacity: 0;
z-index: 11;
}
.website-copied-modal .icon {
margin-right: 8px;
font-size: 16px;
}
.website-copied-modal.show {
right: 0;
opacity: 1;
}







.loading-modal {
width:100%;
height:100%;
background:rgba(0,0,0,0.8);
position:fixed;
top:0;
left:0;
z-index:11;
display:none;
align-items:center;
justify-content:center;
}
.loading-modal.show{
display:flex;
}
.loading-modal.hide{
display:none;
}
.loading-modal .loading-wrapper {
width:200px;
height:100px;
position:relative;
}
.loading-modal .loading-wrapper .border-animation{
width:200px;
height:100px;
position:relative;
overflow:hidden;
clip-path:polygon(0 0,
5px 0,
5px calc(100% - 5px),
calc(100% - 5px) calc(100% - 5px),
calc(100% - 5px) 5px,
5px 5px,
5px 0,
100% 0,
100% 100%,
0 100%,
0 0
);
}
.loading-modal .loading-wrapper .border-animation::before{
content:"";
width:250px;
height:70px;
position:absolute;
top:15px;
left:-25px;
background:linear-gradient(to right, red, blue,green,yellow);
background:white;
animation: loading-modal-animation 5s linear 0s infinite normal;
}
.loading-modal .loading-wrapper .logo {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
width: calc(100% - 25px);
border-radius: 5px;
}
@keyframes loading-modal-animation{
0%{transform:rotate(0deg)}
100%{transform:rotate(360deg)}
}
  

.processing-modal {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(255,255,255,0.1);
display: none;
justify-content: center;
align-items: center;
overflow: hidden;
z-index: 11;
backdrop-filter: blur(8px);
}
.processing-modal.show{
display:flex;
}
.processing-modal.hide{
display:none;
}
.processing-div {
width: min(500px, 90%);
height: 200px;
background:var(--light-black);
border-radius: 5px;
position: relative;
box-shadow: 0 0 8px 2px rgba(0,0,0,0.2);
}
.processing-div .box {
width: 40px;
height: 40px;
background: #63c5d8;
border-radius: 5px;
position: absolute;
left: 0;
right: 0;
top: 55px;
margin: auto;
transition: 0.5s;
z-index: 1;
box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 5px;
animation: bounce 1s linear 0s infinite normal;
}
.processing-div .shadow {
width: 40px;
height: 7px;
background: radial-gradient(#999, transparent);
border-radius: 50%;
position: absolute;
left: 0;
right: 0;
top: 111px;
margin: auto;
transition: 0.5s;
animation: shadow 1s linear 0s infinite normal;
}
.processing-div .text {
position: absolute;
top: 140px;
left: 0;
width: 100%;
text-align: center;
font-family: "fontawesome";
letter-spacing: 0.3mm;
font-size: 12px;
color: rgba(255,255,255,0.7);
}
.processing-div .text::after {
content: "";
animation: text 4s linear 0s infinite normal;
}

@keyframes bounce {
  0% {
    transform: translatey(0px) rotate(0deg);
    border-radius: 5px;
  }
  50% {
    transform: translatey(20px) rotate(45deg);
    border-bottom-right-radius: 20px;
  }
  100% {
    transform: translatey(0px) rotate(90deg);
    border-radius: 5px;
  }
}
@keyframes shadow {
  0% {width: 40px;}
  50% {width: 70px;}
  100% {width: 40px;}
}
@keyframes text {
  0% {content: "";}
  20% {content: ".";}
  40% {content: "..";}
  60% {content: "...";}
  80% {content: "....";}
  100% {content: "";}
}


.modal {
width:100%;
height:100%;
top:0;
left:0;
position:fixed;
align-items:center;
justify-content:center;
display: none;
z-index:10;
background:rgba(0,0,0,0.1);
backdrop-filter:blur(5px);
}
.modal.show {
display:flex;
}




.confirm-modal {
  width: min(500px, 90%);
  border-radius: 5px;
  overflow: hidden;
  display: block;
  background:var(--light-black);
  padding: 30px 20px 10px 20px;
  box-shadow:0 0 5px 2px rgba(0, 0, 0, 0.2);
}
.confirm-modal .heading-text {
  font-family: "fontawesome";
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.5mm;
  font-size: 13px;
  font-weight: 600;
}
.confirm-modal .body-text {
  font-family: sans-serif;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.1mm;
  font-size: 15px;
  margin: 10px 0 10px 0;
}
.confirm-modal .confirm-button,.confirm-modal .cancel-button {
  height: 40px;
  padding: 0 15px;
  border-radius: 3px;
  border: none;
  color: white;
  font-family: "fontawesome";
  font-size: 10px;
  letter-spacing: 0.3mm;
  transition: 0.1s;
  float: right;
  background: none;
}
.confirm-modal .cancel-button:hover,.confirm-modal .confirm-button:hover {
  transform: perspective(500px) translateZ(80px);
  -webkit-transform: perspective(500px) translateZ(80px);
  -moz-transform: perspective(500px) translateZ(80px);
  -ms-transform: perspective(500px) translateZ(80px);
  -o-transform: perspective(500px) translateZ(80px);
}
.confirm-modal .cancel-button {
  color: #ff7777;
}
.confirm-modal .confirm-button {
  color: var(--light-green);
}

.display-info-modal {
width: min(500px, 90%);
border-radius: 5px;
overflow: hidden;
display: block;
background:#f8f8f8;
padding: 30px 20px 10px 20px;
border-left: 7px solid var(--light-green);
z-index: 10;
box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.2);
}
.display-info-modal .heading-text {
font-family: "fontawesome";
color:#444;
letter-spacing: 0.5mm;
font-size: 13px;
font-weight: 600;
}
.display-info-modal .body-text {
font-family: sans-serif;
color:#555;
letter-spacing: 0.1mm;
font-size: 14px;
margin: 15px 0 10px 0;
line-height: 20px;
}
.display-info-modal .body-text a {
color: var(--light-blue);
}
.display-info-modal .close-button {
height: 40px;
padding: 0 15px;
border-radius: 3px;
border: none;
font-family: "fontawesome";
font-size: 10px;
letter-spacing: 0.3mm;
transition: 0.1s;
float: right;
background: none;
color: var(--light-green);
}
.display-info-modal .close-button:hover {
transform: perspective(500px) translateZ(80px);
}




.website-sticky-notification-wrapper{
display:flex;
align-items:flex-end;
justify-content: flex-start;
flex-direction:column;
gap:5px;
position:fixed;
top:110px;
right:0;
z-index:15;
width:min(calc(100% - 20px) , 250px);
pointer-events: none;
}
.website-sticky-notification-wrapper .notification {
max-width:100%;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
padding: 15px 10px;
border-radius: 10px 0 0 10px;
box-shadow: -2px 0 5px 2px rgba(0, 0, 0, 0.2);
transform: translateX(calc(100% + 5px));
transition: 0.2s;
pointer-events: auto;
}
.website-sticky-notification-wrapper .notification.show {
transform: translateX(0px);
}
.website-sticky-notification-wrapper .notification.delete {
display:none;
}
.website-sticky-notification-wrapper .notification .close-button{
background:transparent;
color:#fff;
font-size:15px;
border:none;
}
.website-sticky-notification-wrapper .notification .text{
color:#fff;
font-size:14px;
font-family: sans-serif;
font-weight:400;
width:100%;
}
.website-sticky-notification-wrapper .notification.success{background:var(--green)}
.website-sticky-notification-wrapper .notification.alert{background:#f44}
.website-sticky-notification-wrapper .notification.info{background:var(--blue)}





.website-notification-fixed{
width:min(100% , 500px);
padding:15px;
border-radius:5px;
background:#f44;
display: none;
align-items: center;
justify-content: center;
flex-direction: row;
flex-wrap: wrap;
font-family: var(--default-font);
gap:5px;
}
.website-notification-fixed.show{
display:flex;
}
.website-notification-fixed.info {background: #03a9f4;}
.website-notification-fixed.alert {background: #ea4242;}
.website-notification-fixed.success {background:var(--dark-green);}
.website-notification-fixed .title{
color:rgba(255,255,255,0.8);
font-size: 11px;
font-weight:600;
width:100%;
}
.website-notification-fixed .text{
color:rgba(255,255,255,0.9);
font-size: 13px;
font-weight:400;
line-height:14px;
width:100%;
}



.website-notification{
  width: 100%;
  padding: 20px;
  border-radius: 2px;
  display: none;
  margin: auto;
  margin-top: 10px;
  transition: 0.6s;
  opacity: 1;
  box-sizing: border-box;
  color: whitesmoke;
  font-size: 15px;
  font-family: sans-serif;
  letter-spacing: 0.15mm;
}
.website-notification span{
  float: right;
  color: #ea2d2d;
  font-size: 22px;
  font-weight: bold;
  overflow: hidden;
  cursor: pointer;
  line-height: 20px;
  margin-left: 15px;
}
.website-notification.info {background: #03a9f4;}
.website-notification.info span {color: #ea2d2d;}
.website-notification.alert {background: #ea4242;}
.website-notification.alert span {color: whitesmoke;}
.website-notification.success {background:var(--dark-green);}
.website-notification.success span {color: whitesmoke;}

@keyframes shake {0% {transform: translate(1px, 1px) rotate(0deg);}10% {transform: translate(-1px, -2px) rotate(-1deg);}20% {transform: translate(-3px, 0px) rotate(1deg);}30% {transform: translate(3px, 2px) rotate(0deg);}40% {transform: translate(1px, -1px) rotate(1deg);}50% {transform: translate(-1px, 2px) rotate(-1deg);}60% {transform: translate(-3px, 1px) rotate(0deg);}70% {transform: translate(3px, 1px) rotate(-1deg);}80% {transform: translate(-1px, -1px) rotate(1deg);}90% {transform: translate(1px, 2px) rotate(0deg);}100% {transform: translate(1px, -2px) rotate(-1deg);}}


@media screen and (min-width: 950px) {
  .website-top-navigation {
    width: calc(100% - 300px - 40px);
    top: 20px;
    left: 320px;
    border-radius: 30px;
    border: 1px solid #e5e5e5;
    height: 110px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
  }
  .website-top-navigation .main-section {
    padding: 0 15px 0 20px;
  }
  .website-top-navigation .side-navigation-toggle-button {
    display: none !important;
  }
  .website-top-navigation .scroll-tab-section {
    border-bottom: none;
    height: 50px;
    padding: 5px 0;
  }
  .side-navigation {
    display: flex !important;
    width: 280px;
    height: calc(100% - 40px);
    max-height: calc(100% - 40px);
    border: 1px solid #e5e5e5;
    border-radius: 30px;
    top: 20px;
    left: 20px;
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.1);
  }
  .search-suggestion-section {
    width: calc(100% - 300px - 40px);
    left: 320px;
    transform: translateX(0px);
    top: 145px;
    max-height: calc(100% - 165px);
  }
  .search-suggestion-section #data .content-wrapper {
    width: calc(50% - 5px);
  }
  .website-sticky-notification-wrapper{
    top:140px;
  }
}