html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  top: 0px !important;
  padding: 0;
  margin: 0 auto;
  background-color: var(--clr-background);
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
}

/*.wrapper-alert {
	display: none !important;
}*/

.center {
  text-align: center;
}

:root {
  /* colors */
  
  /* --color-primary :#2980b9; */
  /* --color-move :#143588; */
  /* --color-red : #22a6b3; */
  /*--color-red :#d9534f;*/
  /* --color-primary :#309AFF;
	--color-move :#14B3E8;
	--color-red : #56b79d; */

  --color-primary: #fc5185;
  --color-move: #364f6b;
  --color-red: #43dde6;
  --color-grey: #f0f0f0;
  --color-blue-light: rgb(52 152 219 / 10%);
}

* {
  box-sizing: border-box;

  /* font-family : 'poppins' !important; */
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #d7d7d8 !important;
  opacity: 1 !important; /* Firefox */
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #d7d7d8 !important;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #d7d7d8 !important;
}

.container-fluid {
  padding: 0;
}

button {
  cursor: pointer;
}

.row {
  margin: 0;
}

.pad0 {
  padding: 0;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.h100p {
  height: 100%;
}

ul {
  list-style: none;
}
button:focus {
  outline: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

.pswp {
  z-index: 10000000 !important;
}

.backdrop {
  position: absolute;
  z-index: 999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.c-loader-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  z-index: 99999;
  display: none;
  justify-content: center;
  align-items: center;
}

.c-loader-overlay.show {
  display: flex;
}

.c-loader-overlay .loader {
  --_border-size: 0.375rem;
  border: var(--_border-size) solid rgba(0, 0, 0, 0.2);
  border-top: var(--_border-size) solid var(--clr-primary);
  border-radius: 50%;
  width: 10rem;
  height: 10rem;
  animation: spin 1s linear infinite;
  margin: 0 auto;
  /* Center the loader horizontally */
  position: relative;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}