button {
   font-family: "Montserrat", sans-serif;
   font-style: normal;
   cursor: pointer;
}

@font-face {
   font-family: "gilroy";
   src: url("../../fonts/gilroy-regular.woff") format("woff"), url("../../fonts/gilroy-regular.woff2") format("woff2");
   font-weight: 400;
}

@font-face {
   font-family: "gilroy";
   src: url("../../fonts/gilroy-medium.woff") format("woff"), url("../../fonts/gilroy-medium.woff2") format("woff2");
   font-weight: 500;
}

@font-face {
   font-family: "gilroy";
   src: url("../../fonts/gilroy-bold.woff") format("woff"), url("../../fonts/gilroy-bold.woff2") format("woff2");
   font-weight: 600;
}

@font-face {
   font-family: "gilroy";
   src: url("../../fonts/gilroy-black.woff") format("woff"), url("../../fonts/gilroy-black.woff2") format("woff2");
   font-weight: 900;
}

.profile {
   background: inherit;
   border-radius: 12px;
   position: relative;
   width: -webkit-max-content;
   width: -moz-max-content;
   width: max-content;
   margin-left: auto;
}

.page-template-user-settings-page .profile {
   background: inherit;
}

.profile__tooltip {
   display: none;
   position: absolute;
   background-color: #fff;
   -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
   min-width: 260px;
   padding: 24px;
   z-index: 20;
   top: 44px;
   right: -12px;
   border-radius: 8px;
   -webkit-box-orient: vertical;
   -webkit-box-direction: normal;
   -ms-flex-direction: column;
   flex-direction: column;
   gap: 24px;
   -webkit-box-align: start;
   -ms-flex-align: start;
   align-items: flex-start;
}

.profile__tooltip_settings,
.profile__tooltip_logout {
   font-size: 16px;
   line-height: 100%;
   color: #1a1c1f;
   width: 100%;
   text-align: start;
}

.profile__tooltip_settings:hover,
.profile__tooltip_logout:hover {
   color: #0047ff;
}

.no-analytics {
   border: none;
   background: transparent;
   font-size: inherit;
   color: inherit;
   padding: 0;
   -ms-user-select: none;
   user-select: none;
   -webkit-user-select: none;
   -moz-user-select: none;
   pointer-events: none;
   width: 100%;
   display: inline-block;
}

.error-message {
   color: red;
   margin-top: 10px;
   font-size: 14px;
   display: none;
   text-align: center;
}

.alert {
   padding: 15px;
   margin-bottom: 20px;
   border: 1px solid transparent;
   border-radius: 4px;
   text-align: center;
   font-size: 16px;
   color: #fff;
}

.alert-success {
   background-color: #5cb85c;
   border-color: #4cae4c;
}

.alert-error {
   background-color: #d9534f;
   border-color: #d43f3a;
}

.alert-info {
   background-color: #5bc0de;
   border-color: #46b8da;
}

.alert-warning {
   background-color: #f0ad4e;
   border-color: #eea236;
}

.notification {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   width: -webkit-fit-content;
   width: -moz-fit-content;
   width: fit-content;
   max-width: 396px;
   gap: 12px;
   color: #fff;
   padding: 28px 28px 24px 24px;
   border-radius: 12px;
   background: rgb(43 126 235 / 80%);
   -webkit-backdrop-filter: blur(10px);
   backdrop-filter: blur(10px);
   border: 1px solid #fff;
   -webkit-box-shadow: 0 16px 16px rgba(0, 0, 0, 0.2);
   box-shadow: 0 16px 16px rgba(0, 0, 0, 0.2);
}

.notification span {
   font-size: 18px;
   line-height: 130%;
}

.notification button {
   border: none;
   color: #fff;
   font-size: 24px;
   background: none;
   position: absolute;
   top: 8px;
   right: 10px;
   opacity: 0.9;
   padding: 0;
}

.preloader {
   position: absolute;
   top: 50%;
   left: 50%;
   -webkit-transform: translate(-50%, -50%);
   transform: translate(-50%, -50%);
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   z-index: 9999;
}

.preloader__circle {
   width: 15px;
   height: 15px;
   margin: 5px;
   border-radius: 50%;
   background-color: rgba(255, 255, 255, 0.3);
   -webkit-animation: preloader-animation 1.2s linear infinite;
   animation: preloader-animation 1.2s linear infinite;
}

@-webkit-keyframes preloader-animation {
   0%,
   100% {
      -webkit-transform: scale(1);
      transform: scale(1);
   }

   50% {
      -webkit-transform: scale(1.5);
      transform: scale(1.5);
   }
}

@keyframes preloader-animation {
   0%,
   100% {
      -webkit-transform: scale(1);
      transform: scale(1);
   }

   50% {
      -webkit-transform: scale(1.5);
      transform: scale(1.5);
   }
}

.preloader--hidden,
.hidden {
   display: none;
}
