

/* Start:/local/templates/gaz_template_auth/css/general.css?174782831512570*/
:root {
  --img-size: 80px;
  --img-icons-size: 20px;
  --input-checkbox-size: 18px;
  --input-radio-dot-size: 8px;
  --info-size: 16px;
  --input-padding-size: 14px;
  --status-size: 12px;
  --disabled-color: #ACBED7;
  --bg-grey: #E4EAF4;
  --bg-hover-grey: #CCD7E9;
  --color-blue: #366DBB;
  --color-black: #243041;
  --color-red: #E55C5C;
  --color-green: #71C974;
  --color-grey: #BED3ED;
}

* {
  font-family: "Inter";
  font-style: normal;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
*::-webkit-scrollbar {
  width: 6px;
}
*::-webkit-scrollbar-track {
  background: #E4EAF4;
  border-radius: 100px;
}
*::-webkit-scrollbar-thumb {
  background: var(--color-blue);
  border-radius: 100px;
}

body {
  background: #ecf1f8;
}

main {
  min-height: calc(100vh - 80px);
}

header {
  height: 84px;
}

footer {
  margin-top: 32px;
  padding-top: 17px;
  height: 48px;
  border-top: 1px solid #E1EAF5;
  background-color: #fff;
}

button {
  cursor: pointer;
}

select:focus-visible {
  outline: none;
}

textarea {
  resize: none;
}

input,
textarea,
.input-file {
  padding: var(--input-padding-size);
  border: 1px solid #E1EAF5;
  border-radius: 6px;
}
input:hover,
textarea:hover,
.input-file:hover {
  border: 1px solid var(--color-blue);
}
input:focus,
textarea:focus,
.input-file:focus {
  outline: 3px solid rgba(54, 109, 187, 0.3);
}

.page input[type=radio],
.page input[type=checkbox],
.modal input[type=radio],
.modal input[type=checkbox],
.container input[type=radio],
.container input[type=checkbox] {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  width: var(--input-checkbox-size);
  height: var(--input-checkbox-size);
}

input[type=radio]:checked + .input-checkbox,
input[type=checkbox]:checked + .input-checkbox {
  background: var(--color-blue);
  box-shadow: 0px 0px 0px 2px rgba(54, 109, 187, 0.22);
}

input[type=radio]:disabled + .input-checkbox,
input[type=checkbox]:disabled + .input-checkbox {
  background: #E4EAF4;
  border: none;
  cursor: default;
}

input[type=checkbox]:checked + .input-checkbox::before {
  display: block;
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 8px;
  height: 4px;
  border-radius: 1px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: translate(-50%, -70%) rotate(-45deg);
  -moz-transform: translate(-50%, -70%) rotate(-45deg);
  -o-transform: translate(-50%, -70%) rotate(-45deg);
  -ms-transform: translate(-50%, -70%) rotate(-45deg);
  transform: translate(-50%, -70%) rotate(-45deg);
}

input[type=radio]:checked + .input-checkbox::before {
  display: block;
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: var(--input-radio-dot-size);
  height: var(--input-radio-dot-size);
  background-color: #fff;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.checked-file {
  display: inline-block;
  height: 45px;
}
.checked-file input[type=checkbox]:checked + .input-checked-file {
  background: #FFFFFF;
  outline-color: rgba(54, 109, 187, 0.3);
}
.checked-file input[type=checkbox] + .input-checked-file {
  display: flex;
  align-items: center;
  border-radius: 4px;
  padding: 0 14px 0 16px;
  background-color: #D7DFEC;
  outline: 3px solid transparent;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.checked-file input[type=checkbox] + .input-checked-file svg {
  margin-right: 10px;
}
.checked-file input[type=checkbox] + .input-checked-file span {
  color: var(--color-black);
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
}
.checked-file input[type=checkbox] + .input-checked-file:hover {
  background: #B5C4DD;
}

.input-checkbox {
  cursor: pointer;
  position: relative;
  display: block;
  width: var(--input-checkbox-size);
  height: var(--input-checkbox-size);
  background: #FFFFFF;
  border: 1px solid #ABC2E2;
  border-radius: 3px;
}
.input-checkbox-radio {
  border-radius: 50%;
}
.input-checkbox:hover {
  background: #E6EFFB;
}

.radio {
  display: inline-block;
  vertical-align: middle;
  width: var(--input-checkbox-size);
}

input.pl-center::placeholder {
  text-align: center;
}

input[type=date]::-webkit-calendar-picker-indicator {
  opacity: 0;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type=file] {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  visibility: hidden;
  pointer-events: none;
  user-select: none;
}
input[type=file]::-webkit-file-upload-button {
  visibility: hidden;
}

input[type=number],
input[type=number]:hover,
input[type=number]:focus {
  appearance: none;
  -moz-appearance: textfield;
}

.input-file {
  display: inline-block;
  position: relative;
}

img {
  border-radius: 50%;
  width: var(--img-size);
  height: var(--img-size);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

h3, h4 {
  text-align: center;
  color: #243041;
  font-weight: 600;
}

h3 {
  font-size: 24px;
  line-height: 29px;
}

h4 {
  font-size: 20px;
  line-height: 24px;
}

p {
  margin: 2px 0 16px;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: var(--color-black);
}

.container {
  position: relative;
  margin: 0 50px;
}

.fs-14, .fs-13 {
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 400;
  line-height: 17px;
  color: #71829B;
}
.fs-14-red, .fs-13-red {
  color: var(--color-red);
}
.fs-14-black, .fs-13-black {
  color: #243041;
}
.fs-14-blue, .fs-13-blue {
  color: var(--color-blue);
}
.fs-14-600, .fs-13-600 {
  font-weight: 600;
}
.fs-14-700, .fs-13-700 {
  font-weight: 700;
  line-height: 16px;
}

.fs-14 {
  font-size: 14px;
}

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

.fs-12 {
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  color: #71829B;
}

.fs-20 {
  font-size: 20px;
  line-height: 24px;
}

.ta-c {
  text-align: center;
}

.ta-l {
  text-align: left !important;
}

.ta-r {
  text-align: right !important;
}

.fw-600 {
  font-weight: 600;
}

.t-color-black {
  color: var(--color-black);
}

.t-color-blue {
  color: var(--color-blue);
}

.t-color-grey {
  color: var(--color-grey);
}

.t-color-green {
  color: var(--color-green);
}

.t-color-red {
  color: var(--color-red);
}

.t-color-dis {
  color: var(--disabled-color);
}

.bg-color-dis {
  background-color: var(--disabled-color);
}

.bg-color-blue {
  background-color: var(--color-blue) !important;
}

.bg-color-grey {
  background-color: var(--color-grey) !important;
}

.bg-color-green {
  background-color: var(--color-green) !important;
}

.bg-color-red {
  background-color: var(--color-red) !important;
}

.pos-rel {
  position: relative;
}

.img-mini {
  width: 32px;
  height: 32px;
}

.img-icons {
  width: var(--img-icons-size);
  height: var(--img-icons-size);
  border-radius: 0;
}

.cp {
  cursor: pointer;
}

.input-padding-t {
  padding-top: 14px;
}

.ml-16 {
  margin-left: 16px;
}

.mt-8 {
  margin-top: 8px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-12 {
  margin-top: 12px;
}

.mt-16 {
  margin-top: 16px !important;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mb-4 {
  margin-bottom: 4px !important;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-16 {
  margin-bottom: 8px !important;
}

.mr-16 {
  margin-right: 16px;
}

.mr-24 {
  margin-right: 24px;
}

.mr-30 {
  margin-right: 30px;
}

.ml-a {
  margin-left: auto;
}

.pr-10 {
  padding-right: 10px;
}

.pr-14 {
  padding-right: 14px !important;
}

.pr-16 {
  padding-right: 16px;
}

.pr-30 {
  padding-right: 30px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-34 {
  padding-left: 34px;
}

.d-show {
  display: block !important;
}

.d-hidden {
  display: none;
}

.d-ib {
  display: inline-block;
}

.f-top {
  display: flex;
  align-items: top;
}

.f-center {
  display: flex !important;
  align-items: center;
}
.f-center-off {
  align-items: start;
}

.f-space-b {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.g-cont {
  display: grid;
}
.g-cont-col2 {
  grid-template-columns: 65% 100px;
  gap: 16px;
}
.g-cont-col3 {
  grid-template-columns: repeat(3, 1fr);
}
.g-cont-gap-30 {
  gap: 30px;
}

.no-bord {
  border-top: 0 !important;
  border-bottom: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
}

.no-padd-top {
  padding-top: 0 !important;
}

.no-padd-bottom {
  padding-bottom: 0 !important;
}

.no-padd-right {
  padding-right: 0 !important;
}

.no-padd-left {
  padding-left: 0 !important;
}

.w50-proc {
  width: 50%;
}

.first-child-mt-16:first-child {
  margin-top: 16px;
}

.clarif {
  display: inline-block;
  vertical-align: middle;
  margin-left: 6px;
  width: var(--info-size);
  height: var(--info-size);
  background-color: var(--color-black);
  color: #fff;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
}
.clarif i {
  display: inline-block;
  position: absolute;
  top: 30px;
  left: 9px;
  max-width: 525px;
  width: max-content;
  background-color: var(--color-black);
  border-radius: 6px;
  padding: 12px;
  font-weight: 400;
  font-size: 13px;
  line-height: 15px;
  text-align: left;
  z-index: 2;
  cursor: default;
}

.pe-n {
  pointer-events: none;
}

.footer {
  font-weight: 400;
  font-size: 11px;
  line-height: 13px;
  color: #243041;
}

.logo {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 84px;
  height: 84px;
  background-color: var(--color-blue);
  background-position: center center;
  background-size: 48px 54px;
  background-repeat: no-repeat;
  z-index: 10;
}

.header {
  display: none;
  background-color: #fff;
  border-bottom: 1px solid #E1EAF5;
}

.user {
  height: 48px;
}
.user_wrap {
  display: none;
  height: 100%;
  z-index: 12;
}
.user .user-interface {
  display: flex;
  position: absolute;
  right: 0;
  width: 105px;
  height: 100%;
  z-index: 2;
}
.user .user-interface .user-params {
  position: relative;
  cursor: pointer;
  height: 100%;
}
.user .user-interface .user-params:hover {
  background-color: #ecf1f8;
}
.user .user-interface .user-bell {
  width: 40px;
  background-image: url(/local/templates/gaz_template_auth/css/../icons/bell.svg);
  background-position: center center;
  background-size: 22px;
  background-repeat: no-repeat;
}
.user .user-interface .user-bell .dot {
  display: none;
  position: absolute;
  top: 12px;
  right: 8px;
  width: 8px;
  height: 8px;
  background: #E55C5C;
  border-radius: 50%;
}
.user .user-interface .user-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
}
.user_modal {
  display: none;
  position: absolute;
  top: calc(100% + 1px);
  right: 0;
  width: 295px;
  max-height: 504px;
  box-shadow: 1px 2px 3px #CBD5E4;
  background-color: #fff;
  border-radius: 0px 0px 8px 8px;
}
.user_modal .big-photo {
  margin: 0 auto;
  width: fit-content;
}
.user_modal .btn-icon::before {
  left: 23px;
  width: 14px;
}
.user_modal .btn-icon button {
  height: 53px;
  padding-left: 48px;
  border-radius: 0;
  border-left: none;
  border-right: none;
  font-weight: 400;
  text-align: left;
}
.user_modal-wrap {
  padding: 16px 20px;
}
.user_modal-wrap-scroll {
  max-height: 365px;
  overflow-y: auto;
  overflow-x: hidden;
}
.user_modal-wrap-header {
  border-bottom: 1px solid #E1EAF5;
}
.user_modal-wrap-list {
  padding: 0 20px 0 30px;
}
.user_modal-wrap-list li {
  border-bottom: 1px solid #E1EAF5;
  padding: 14px 0;
}
.user_modal-wrap-list li:last-child {
  border: none;
}
.user_modal-wrap-list li a {
  color: var(--color-blue);
}
.user_modal-wrap-list li p {
  margin-top: 4px;
}
.user_modal-wrap-list::-webkit-scrollbar-track {
  margin: 16px;
}
.user_modal-wrap-footer {
  border-top: 2px solid #E1EAF5;
}
.user_modal-wrap-footer button {
  height: 43px;
  border-radius: 4px;
}
.user_modal-size {
  width: 380px;
}
.user-email {
  margin-top: 8px;
}
.user-password {
  margin-top: 16px;
}
.user-password button {
  height: 44px;
}
.user-out {
  margin: 0 auto;
  width: 90px;
}
.user-out button {
  height: 43px;
  border-radius: 4px;
}

.breadcrumb {
  padding-left: 84px;
}
.breadcrumb-wrap {
  display: none;
  padding: 16px 0 0 16px;
}/*# sourceMappingURL=style.css.map */

.page-chapter {
  margin-top: 32px;
  background-color: #fff;
  border-radius: 8px;
}

.page-wrap-form {
  padding: 30px;
}
.default-style ol{
  list-style: decimal;
}
.default-style ul {
  list-style: disc;
}
.default-style ol,
.default-style ul {
  padding-left: 40px;
}
.default-style li {
  border: none;
  padding: 0;
}
/* End */


/* Start:/local/templates/gaz_template_auth/css/btn_style.css?17478283153049*/
.btn {
  display: block;
  width: 100%;
  height: 36px;
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  text-align: center;
  color: var(--color-blue);
  border: none;
  border-radius: 6px;
  background-color: #fff;
  border: 1px solid #E1EAF5;
}
.btn:hover {
  color: #134489;
}
.btn:active {
  outline: 3px solid rgba(181, 196, 221, 0.2);
}
.btn_blue {
  background-color: var(--color-blue);
  color: #fff;
}
.btn_blue:hover {
  background-color: #134489;
  color: #fff;
}
.btn_blue:active {
  outline: 3px solid rgba(31, 84, 159, 0.3);
}
.btn_grey {
  border: none;
  background: var(--bg-grey);
  color: var(--color-blue);
}
.btn_grey:hover {
  background: var(--bg-hover-grey);
}
.btn_grey:active {
  outline: 3px solid rgba(204, 215, 233, 0.4) !important;
}
.btn_modal {
  height: 55px;
}
.btn-size-w153 {
  width: 153px;
  padding-top: 12px;
}
.btn-size-h43 {
  height: 43px;
}
.btn:disabled {
  color: #ACBED7;
}

b,
.btn-icon,
.t-icon,
.input-icon {
  position: relative;
}
b::before,
.btn-icon::before,
.t-icon::before,
.input-icon::before {
  display: block;
  position: absolute;
  content: "";
  background-position: center center;
  background-repeat: no-repeat;
  height: 100%;
  width: 20px;
}

.default-style b::before {
  content: none;
}

.modal-input::before {
  width: 50px;
}
b-offset-r12::before,
.btn-icon-offset-r12::before,
.t-icon-offset-r12::before,
.input-icon-offset-r12::before {
  right: 12px;
}
b-offset-l12::before,
.btn-icon-offset-l12::before,
.t-icon-offset-l12::before,
.input-icon-offset-l12::before {
  left: 12px;
}

b::before {
  width: 18px;
  position: static;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}

.icon-arow::before {
  background-image: url(/local/templates/gaz_template_auth/css/../img/icons/arow.svg);
}

.icon-add::before {
  background-image: url(/local/templates/gaz_template_auth/css/../img/icons/add.svg);
}

.icon-inn::before {
  background-image: url(/local/templates/gaz_template_auth/css/../img/icons/inn.svg);
}

.icon-login::before {
  background-image: url(/local/templates/gaz_template_auth/css/../img/icons/login.svg);
}

.icon-pass::before {
  background-image: url(/local/templates/gaz_template_auth/css/../img/icons/password.svg);
}

.icon-email::before {
  background-image: url(/local/templates/gaz_template_auth/css/../img/icons/email.svg);
}

.icon-save::before {
  background-image: url(/local/templates/gaz_template_auth/css/../img/icons/save.svg);
}

.icon-about::before {
  background-image: url(/local/templates/gaz_template_auth/css/../img/icons/about.svg);
}

.icon-attach-min::before {
  background-image: url(/local/templates/gaz_template_auth/css/../img/icons/attach_mini.svg);
}

.icon-attach-max::before {
  width: 30px;
  background-image: url(/local/templates/gaz_template_auth/css/../img/icons/attach_maxi.svg);
}

.icon-del::before {
  width: 15px;
  background-image: url(/local/templates/gaz_template_auth/css/../img/icons/del.svg);
}

.icon-plus::before {
  background-image: url(/local/templates/gaz_template_auth/css/../img/icons/plus-circle.svg);
}

.icon-plus-blue::before {
  background-image: url(/local/templates/gaz_template_auth/css/../img/icons/plus-circle-blue.svg);
}

.icon-calendar::before {
  background-image: url(/local/templates/gaz_template_auth/css/../img/icons/calendar.svg);
}

.icon-down::before {
  background-image: url(/local/templates/gaz_template_auth/css/../img/icons/vector-down.svg);
}

[data-disabled],
:disabled {
  background-color: var(--bg-grey);
  outline: none;
  border: none;
  pointer-events: none;
  opacity: 0.4;
}/*# sourceMappingURL=style.css.map */
/* End */


/* Start:/local/templates/gaz_template_auth/css/modal.css?17478283154390*/
.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 12;
}

.close {
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 20px;
  height: 20px;
  line-height: 12px;
  font-weight: 100;
  font-size: 30px;
  color: #243041;
}
.close-center {
  top: 50%;
  right: 0;
}

.modal {
  position: fixed;
  left: 50%;
  top: 50vh;
  transform: translate(-50%, -50%);
  width: 450px;
  padding: 32px;
  background-color: #fff;
  border-radius: 6px;
}

.modal.modal_cookie {
  top: auto;
  bottom: -32px;
  width: calc(100% - 50px);
  box-shadow: 0px 0px 43px 14px #acc9ce;
}

.modal.modal_cookie .modal_cookie_title {
  margin-bottom: 10px;
}

.modal.modal_cookie .modal_cookie_text {
  text-align: center;
  margin-bottom: 20px;
}

.modal.modal_cookie .btn_cookie {
  color: #fff;
  margin: 0 auto;
  width: fit-content;
  height: auto;
  padding: 10px 20px;
}
.modal-input {
  margin-top: 24px;
}

.modal_rees .modal-input {
  margin-top: 16px;
}
.modal-ques {
  display: block;
  padding: 0;
  width: 944px;
}
.modal_pass-change {
  display: block;
  width: 486px;
  padding: 0;
}
.modal-file {
  position: relative;
  height: 45px;
  margin-bottom: 16px;
  padding: 14px 53px 14px 14px;
  background-color: #ECF1F8;
  border-radius: 6px;
}
.modal-file-sent {
  width: 486px;
}
.modal-file a {
  font-weight: 400 !important;
}
.modal-file i {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 45px;
  cursor: pointer;
}
.modal-file i::before {
  width: 100%;
}
.modal-file::before {
  width: 15px;
  top: 0;
  right: 15px;
}
.modal-scroll {
  max-height: calc(100vh - 226px);
  padding: 0 20px 0 30px;
  overflow: auto;
}
.modal-scroll::-webkit-scrollbar-track {
  margin: 32px;
}
.modal-scroll li {
  overflow: visible;
  padding: 25px 0;
  border-bottom: 2px solid #E1EAF5;
}
.modal-scroll li:first-child {
  padding-top: 0;
}
.modal-scroll li:last-child {
  border: none;
}
.modal-scroll-file li {
  padding: 24px 0;
}
.modal-scroll-file li:last-child {
  padding-bottom: 0;
}
.modal-scroll-file li .f-space-b {
  align-items: start;
}
.modal-scroll-file li .f-center {
  padding-left: 16px;
}
.modal-scroll-file li .f-center .input-file {
  width: 100%;
  height: 95px;
  padding: 24px 0 0 117px;
  border: 2px dashed #CDD7E4;
}
.modal-scroll-file li .f-center .input-file .fs-13 {
  font-size: 16px;
  line-height: 19px;
}
.modal-scroll-file li .f-center:before {
  left: 75px;
}
.modal-scroll-file li p {
  margin-top: 0;
}
.modal-scroll-file li p:last-child {
  margin: 0;
}
.modal .ques-wrap {
  position: relative;
  padding-left: 30px;
}
.modal .ques-wrap .num {
  position: absolute;
  top: 0;
  left: 0;
}
.modal .ques-wrap .en {
  color: #71829B;
}
.modal .ques-wrap .en-m-top::before {
  display: block;
  content: "";
  width: 100%;
  height: 8px;
}
.modal .ques-wrap .en-m-left {
  margin-left: 4px;
}
.modal .ques-wrap .option {
  position: relative;
  margin-top: 16px;
  padding-left: 34px;
}
.modal .ques-wrap .option:first-child {
  margin-top: 0;
}
.modal .ques-wrap .option .radio {
  position: absolute;
  top: 0;
  left: 0;
}
.modal .btns {
  padding: 20px 30px;
  background: #ECF1F8;
  border-radius: 0px 0px 6px 6px;
  border-top: 2px solid #E1EAF5;
}
.modal .btn-wrap {
  display: grid;
  grid-template-columns: repeat(2, 153px);
  gap: 16px;
}
.modal .btn-wrap a {
  line-height: 32px;
}
.modal .btn-wrap span {
  font-size: 18px;
}
.modal .icon-save button {
  padding-left: 53px;
  text-align: left;
}
.modal .icon-save::before {
  left: 30px;
}
.modal .items {
  padding: 30px;
  max-height: 400px;
}
.modal .info-icon {
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
  width: var(--info-size);
  height: var(--info-size);
  color: #71829B;
  text-align: center;
  font-size: 12px;
  line-height: 12px;
  font-weight: 600;
  border: 2px solid #71829B;
  border-radius: 50%;
}
.modal .info-wrap {
  position: relative;
  padding-left: 25px;
}
.modal .first-offset {
  margin-top: 32px;
}
.modal .icon-arow {
  margin-top: 32px;
}
.modal .icon-arow::before {
  right: 20px;
}
.modal input {
  width: 100%;
}
.modal input.icon {
  padding-left: 50px;
}
.modal a {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: var(--color-blue);
}

.modal .modal_cookie_text a {
  font-size: 16px;
}

/* End */
/* /local/templates/gaz_template_auth/css/general.css?174782831512570 */
/* /local/templates/gaz_template_auth/css/btn_style.css?17478283153049 */
/* /local/templates/gaz_template_auth/css/modal.css?17478283154390 */
