@charset "UTF-8";
@import 'forms.css';
@import 'offers.css';
@import 'payment.css';
@import 'responsive.css';
@import 'service.css';
@import 'safari.css';
@import 'android.css';
.loader-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.spinner {
  width: 64px;
  height: 64px;
  border: 8px solid;
  border-color: #592E8D transparent #592E8D transparent;
  border-radius: 50%;
  animation: spin-anim 1.2s linear infinite;
}

@keyframes spin-anim {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
html {
  height: 100%;
}

#app {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: scroll;
  background: linear-gradient(rgb(255, 255, 255) 0%, rgb(219, 233, 246) 100%) no-repeat transparent;
}

body {
  color: #4A4A4A;
  font-family: "VisbyCF", serif;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  position: fixed;
}
body.bg {
  background-color: transparent;
}
body a:hover {
  text-decoration: unset;
}
body .btn-secondary {
  background-color: #078F59;
  border-color: #078F59;
  color: #FFFFFF !important;
}
body .btn-secondary:disabled {
  background-color: rgba(7, 143, 89, 0.8);
}
body .btn-primary {
  background-color: #424040;
  border-color: #424040;
  color: #FFFFFF !important;
}
body .btn-primary:disabled {
  background-color: rgba(66, 64, 64, 0.8);
}
body .btn-link {
  color: #282829;
  display: block;
}
body .btn-link.forgot_password_btn {
  text-align: center;
  margin-top: 30px;
  font-family: "VisbyCF Bold", serif;
  font-size: 13px;
  margin-bottom: 60px;
}
body .btn-link.nearly_offers {
  color: white !important;
  font-size: 14px;
}
body .mt35 {
  margin-top: 35px;
}
body .mb35 {
  margin-bottom: 35px;
}
body .container.header_section {
  max-height: 480px;
  padding: 0;
}
body .container.header_section a {
  display: inline-block;
}
body .container.header_section .form {
  padding: 0px 20px;
}
body .container.header_section header {
  /* position: relative;
   overflow-x: hidden;
   padding: 0 30px;*/
}
body .container.header_section header .offer_list_title {
  display: flex;
  align-items: center;
  background: #592E8D;
  border-radius: 20px;
  box-shadow: 5px 15px 20px rgba(89, 46, 141, 0.2);
  height: 85px;
  margin: 120px 30px 0px;
}
body .container.header_section header .offer_list_title img {
  margin-left: 30px;
  margin-bottom: -20px;
}
body .container.header_section header .offer_list_title .content {
  margin-left: 10px;
}
body .container.header_section header .offer_list_title .content h1 {
  font-family: "VisbyCF Bold", serif;
  font-size: 23px;
  color: #fff;
  margin-bottom: 0;
}
body .container.header_section header .offer_list_title .content h2 {
  font-family: "VisbyCF Bold", serif;
  font-size: 16px;
  color: #fff;
  margin-bottom: 0;
}
body .container.header_section header .has-search {
  position: relative;
}
body .container.header_section header .has-search:after {
  content: "";
  height: 26px;
  width: 26px;
  position: absolute;
  bottom: 13px;
  right: 20px;
  background: transparent url(../img/search_icon.svg) no-repeat top center;
}
body .container.header_section header .ordery_by_btn {
  font-family: "VisbyCF Bold", serif;
  color: #282829;
  background: #DBE9F6;
  border-radius: 30px;
  padding: 10px 25px;
  font-size: 14px;
  float: right;
}
body .container.header_section header .ordery_by_btn img {
  margin-left: 15px;
}
body .container.header_section header .ordery_by_btn img.ASC {
  transform: scale(1, -1);
}
body .container.header_section header nav {
  display: block;
  padding: 25px;
  height: 80px;
  width: 100%;
  top: 0;
  background: #fff;
  z-index: 100;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.031372549);
  position: fixed;
}
body .container.header_section header nav #header_back_btn {
  margin-right: 15px;
}
body .container.header_section header .fig {
  display: block;
  position: relative;
  z-index: 0;
  width: 100%;
  margin-bottom: 0;
}
body .container.header_section header .fig h1 {
  font-size: 18px;
  margin-top: 40px;
}
body .container.header_section header .fig h2 {
  font-size: 16px;
  margin-top: 10px;
}
body .container.header_section header .fig #header_filter_form {
  position: absolute;
  top: 85px;
  margin-left: 30px;
  width: calc(100% - 60px);
  position: relative;
}
body .container.header_section header .fig #header_filter_form .has-search .form-control-feedback {
  position: absolute;
  right: 15px;
  top: 14px;
  z-index: 2;
  display: block;
  width: 35px;
  text-align: center;
  pointer-events: none;
}
body .container.header_section header .fig #header_filter_form #header_filter_text {
  padding-left: 34px;
  font-weight: 200;
  font-size: 20px;
  color: #414042;
  padding: 12px 22px;
  height: 54px;
  border-radius: 50px;
}
body .container.header_section header .fig #header_filter_form #header_filter_text::-webkit-input-placeholder, body .container.header_section header .fig #header_filter_form #header_filter_text::-moz-placeholder, body .container.header_section header .fig #header_filter_form #header_filter_text:-ms-input-placeholder, body .container.header_section header .fig #header_filter_form #header_filter_text:-moz-placeholder {
  color: #414042;
}
body .container.content_section {
  position: relative;
  display: block;
  margin-top: 100px;
  height: auto;
  padding: 0 30px 100px;
}
body .container.content_section.googlemap {
  margin-top: 0;
}
body .container.content_section.offer_section {
  margin-top: 50px;
}
body .container.content_section .h1_box {
  margin-top: 130px;
  margin-bottom: 50px;
}
body .container.content_section .h1_box h1 {
  font-size: 23px;
  text-align: center !important;
  font-family: "VisbyCF Bold", serif;
  margin: 0;
  letter-spacing: 1px;
}
body .container.content_section .welcome-block {
  font-family: "VisbyCF Bold", serif;
  letter-spacing: 1px;
  padding: 30px 0px;
}
body .container.content_section .welcome-block .user-name {
  color: #8D8D92;
  font-size: 16px;
  margin-bottom: 0;
}
body .container.content_section .welcome-block .block-title {
  color: #282829;
  font-size: 23px;
  margin-bottom: 0;
}
body form .form-row {
  margin-bottom: 15px;
}
body input:-webkit-autofill,
body input:-webkit-autofill:hover,
body input:-webkit-autofill:focus,
body input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
body .pv5 {
  padding-top: 5px;
}
body #app {
  margin: 0 auto;
}
body .rateing_star_inline_box {
  display: inline-block;
}

#trigger_btn {
  background: transparent;
  display: block;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.login_selector_page #app {
  background: transparent url("../img/login_selector.png") no-repeat top center;
  background-size: cover;
}
.login_selector_page .login_selector_box {
  height: 100%;
  display: flex;
  text-align: center;
}
.login_selector_page .login_selector_box > div {
  position: relative;
  margin: 0;
  width: 100%;
}
.login_selector_page .login_selector_box > div .illustration {
  position: absolute;
  width: 100%;
  top: 17%;
  margin-bottom: 220px;
}
.login_selector_page .login_selector_box > div .login_selector_main_div {
  position: absolute;
  bottom: 46px;
  width: 100%;
  padding: 0 36px;
}
.login_selector_page .login_selector_box > div .login_selector_main_div > button {
  margin-bottom: 40px;
}

.registration_page h1 {
  font-family: "VisbyCF Bold", serif;
  font-size: 35px;
  padding: 0 55px;
  position: relative;
  top: 13%;
  text-align: end;
}
.registration_page.userLogin .registration_box h1 {
  color: #fff;
  margin-bottom: 40px;
}
.registration_page.userLogin #app {
  background: transparent url("../img/login_user_bg.png") no-repeat top center;
  background-size: cover;
}
.registration_page.serviceLogin .registration_box h1 {
  color: #592E8D;
  margin-bottom: 40px;
}
.registration_page.serviceLogin #app {
  background: transparent url("../img/login_service_bg.png") no-repeat top center;
  background-size: cover;
}
.registration_page .description {
  margin: 20px 0;
}
.registration_page .btn {
  border-radius: 30px;
  font-size: 18px;
  font-weight: 200;
  padding: 12px 24px;
  text-transform: uppercase;
}
.registration_page .registration_box {
  height: 100%;
  display: flex;
  text-align: center;
  overflow: scroll;
}
.registration_page .registration_box > div {
  position: relative;
  margin: 0;
  width: 100%;
}
.registration_page .registration_box > div .illustration {
  position: fixed;
  width: 100%;
  top: 7%;
  left: 0;
}
.registration_page .registration_box > div .illustration img {
  margin: 0 auto;
}
.registration_page .registration_box > div .registration_main_div {
  position: absolute;
  bottom: 0;
  max-height: 50vh;
  width: 100%;
}
.registration_page .registration_box > div .registration_main_div .content {
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  background: transparent linear-gradient(180deg, #FFFFFF 0%, #DBE9F6 100%);
  padding: 30px 35px 30px;
  width: 100%;
}
.registration_page .registration_box > div .registration_main_div .content .s-form-control {
  margin-bottom: 10px;
}
.registration_page .registration_box > div .registration_main_div .content .registration-box {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  font-size: 13px;
  font-family: "VisbyCF Bold", serif;
}
.registration_page .registration_box > div .registration_main_div .content .registration-box > span {
  color: rgb(133, 137, 143);
  margin-right: 5px;
}
.registration_page .registration_box > div .registration_main_div .content .registration-box .registration_btn {
  color: #592E8D;
}
.registration_page .registration_box > div .registration_main_div .content .back_btn {
  margin-top: 40px;
}

.login_page h1 {
  font-family: "VisbyCF Bold", serif;
  font-size: 35px;
  padding: 0 55px;
  position: relative;
  top: 13%;
  text-align: end;
}
.login_page.userLogin .login_box h1 {
  color: #fff;
  margin-bottom: 80px;
}
.login_page.userLogin #app {
  background: transparent url("../img/login_user_bg.png") no-repeat top center;
  background-size: cover;
}
.login_page.userLogin .login_main_div::before {
  content: url("../img/login_house.png");
  position: absolute;
  top: 18px;
  left: 0;
}
.login_page.serviceLogin .login_box h1 {
  color: #592E8D;
  margin-bottom: 80px;
}
.login_page.serviceLogin .login_main_div::before {
  content: url("../img/login_room.svg");
  position: absolute;
  top: 18px;
  left: 0;
}
.login_page.serviceLogin #app {
  background: transparent url("../img/login_service_bg.png") no-repeat top center;
  background-size: cover;
}
.login_page .description {
  margin: 20px 0;
}
.login_page .btn {
  border-radius: 30px;
  font-size: 18px;
  font-weight: 200;
  padding: 12px 24px;
  text-transform: uppercase;
}
.login_page .login_box {
  height: 100%;
  display: flex;
  text-align: center;
}
.login_page .login_box > div {
  position: relative;
  margin: 0;
  width: 100%;
}
.login_page .login_box > div .illustration {
  position: relative;
  width: 100%;
  top: 7%;
}
.login_page .login_box > div .illustration img {
  margin: 0 auto;
}
.login_page .login_box > div .login_main_div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.login_page .login_box > div .login_main_div .content {
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  background: transparent linear-gradient(180deg, #FFFFFF 0%, #DBE9F6 100%);
  padding: 130px 35px 30px;
  width: 100%;
}
.login_page .login_box > div .login_main_div .content .s-form-control {
  margin-bottom: 10px;
}
.login_page .login_box > div .login_main_div .content .registration-box {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  font-size: 13px;
  font-family: "VisbyCF Bold", serif;
}
.login_page .login_box > div .login_main_div .content .registration-box > span {
  color: rgb(133, 137, 143);
  margin-right: 5px;
}
.login_page .login_box > div .login_main_div .content .registration-box .registration_btn {
  color: #592E8D;
}
.login_page .login_box > div .login_main_div .content .back_btn {
  margin-top: 40px;
}

body.registration .illustration {
  text-align: center;
  padding: 50px;
  background-color: #F2F2F2;
}
body.registration h1 {
  padding-bottom: 50px;
  background-color: #F2F2F2;
  font-size: 18px;
  text-transform: uppercase;
  text-align: center !important;
  font-weight: bold;
  margin: 0;
  margin-bottom: 25px;
}
body.registration .circle {
  display: inline-block;
  border: 2px solid #424142;
  border-radius: 100%;
  width: 70px;
  height: 70px;
  line-height: 60px;
  text-align: center;
  vertical-align: middle;
  margin-bottom: 40px;
  margin-top: 40px;
}
body.registration p {
  font-size: 14px;
}
body.registration .login_main_div form {
  position: relative;
  top: -50px;
  border-radius: 30px 30px 0 0;
  padding-top: 30px;
  background: #fff;
}

.hemburger_menu {
  z-index: 10;
}

.user_index {
  height: 100%;
  background: transparent;
}

.dashboard_menu {
  margin-top: 0 !important;
}
.dashboard_menu .row {
  margin-right: -5px;
  margin-left: -5px;
}
.dashboard_menu .row > div {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
}
.dashboard_menu .row > div a {
  display: block;
  background: #EAEAEA;
  display: block;
  width: 100%;
  font-size: 16px;
  height: 100%;
  vertical-align: middle;
}
.dashboard_menu .row > div a span {
  line-height: normal;
  display: inline-table;
  color: #282829;
}
.dashboard_menu .row > div.box_align_left {
  height: 60px;
}
.dashboard_menu .row > div.box_align_left a {
  line-height: 60px;
}
.dashboard_menu .row > div.box_align_top {
  height: 165px;
}
.dashboard_menu .row > div.box_align_top a {
  line-height: 130px;
}
.dashboard_menu .row > div.box_align_top img {
  margin-bottom: 10px;
}

.footer .logut_btn {
  font-size: 40px;
  color: #fff !important;
  font-weight: bold;
  position: absolute;
  right: -38px;
  top: -12px;
}
.footer.home_page_footer .logut_btn {
  color: #078F59 !important;
  font-size: 30px;
  right: 10px;
  top: -90px;
}
.footer.home_page_footer .you_saved_icon {
  position: relative;
  font-family: "Syaquita", sans-serif !important;
  font-size: 38px;
  color: #414042;
  text-align: right;
  line-height: 39px;
}
.footer.home_page_footer .you_saved_icon img {
  position: absolute;
  left: -12px;
  top: 7px;
}
.footer.home_page_footer .border_right {
  border-right: 1px solid #D7DF23;
}
.footer.home_page_footer p {
  color: #414042;
  font-size: 15px;
  line-height: 17px;
}
.footer.home_page_footer p strong {
  color: #078F59;
  font-weight: bold;
}
.footer.default_foooter {
  background: #592E8D;
  height: 100px;
  padding: 15px;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  position: fixed;
  width: 100%;
  bottom: 0;
}
.footer.default_foooter > div a {
  font-size: 12px;
  text-align: center !important;
  font-family: "VisbyCF Bold", serif;
  margin-bottom: 0;
  color: #fff;
}
.footer.default_foooter > div a p {
  margin-bottom: 0;
}
.footer.default_foooter > div a img {
  height: 25px;
  margin-bottom: 10px;
}
.footer.default_foooter > div a.only_back_btn {
  color: #fff;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: bold;
  margin: 0;
  position: relative;
  margin-top: -8px;
}
.footer.default_foooter > div a.only_back_btn img {
  margin-bottom: 10px;
}
.footer.restaurant_footer {
  position: relative;
}
.footer.restaurant_footer .logut_btn {
  color: #fff !important;
  font-size: 24px;
  right: 10px;
  top: -7px;
  position: absolute;
}

.gm-style .gm-style-iw-c {
  border-radius: 30px;
}
.gm-style .gm-style-iw-c button {
  display: none !important;
}
.gm-style .gm-style-iw-c .marker_box {
  position: relative;
  text-align: center;
  padding: 5px;
}
.gm-style .gm-style-iw-c .marker_box .like_box {
  position: absolute;
  top: 0;
  right: 10px;
}
.gm-style .gm-style-iw-c .marker_box .logo_img {
  display: block;
  width: 80px;
  margin: 0 auto;
  text-align: center;
}
.gm-style .gm-style-iw-c .marker_box .logo_img img {
  width: 100%;
}
.gm-style .gm-style-iw-c .marker_box .open_btn_content {
  color: #757575;
  font-size: 13px;
}
.gm-style .gm-style-iw-c .marker_box .open_btn_content h3 {
  padding-top: 10px;
  color: #414042;
  font-size: 17px;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}
.gm-style .gm-style-iw-c .marker_box .open_btn_content h4 {
  color: #9C9C9C;
  font-size: 14px;
  margin: 0;
  text-align: center;
  font-weight: normal;
  margin-bottom: 5px;
}
.gm-style .gm-style-iw-c .marker_box .open_btn_content p {
  margin-top: 10px;
  margin-bottom: 10px;
}
.gm-style .gm-style-iw-c .marker_box .open_btn_content p.address {
  margin-top: 20px;
  font-size: 15px;
  color: #414042;
  margin-bottom: 5px;
}
.gm-style .gm-style-iw-c .marker_box .open_btn_content .rateing_star {
  margin-right: 5px;
}
.gm-style .gm-style-iw-c .marker_box .navigation_btn {
  display: inline-block;
  background: #078F59;
  border-radius: 25px;
  padding: 7px 13px;
  color: #FFFFFF;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  min-width: 150px;
  margin-top: 10px;
}

.activer_order_row {
  background: rgba(7, 143, 89, 0.07) !important;
  padding-top: 70px !important;
  height: auto !important;
}
.activer_order_row .order_info_box {
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
}
.activer_order_row .order_info_box.row {
  position: relative;
  margin-left: 0;
  margin-right: 0;
}
.activer_order_row .order_info_box.row > .col {
  padding: 0;
}
.activer_order_row .order_info_box.row > .col.img_box {
  max-width: 120px;
}
.activer_order_row .order_info_box.row > .col.img_box > div {
  background: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 100%;
  width: 100px;
  height: 100px;
  position: relative;
}
.activer_order_row .order_info_box.row > .col.img_box > div img {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.activer_order_row .order_info_box.row > .col.img_box .route_box {
  color: #414042;
  letter-spacing: 0.26px;
  font-size: 13px;
  font-weight: bold;
  background: #D7DF23;
  padding: 10px 20px;
  padding-right: 10px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  position: absolute;
  left: -30px;
  bottom: 0;
  text-decoration: none;
}
.activer_order_row .order_info_box.row > .col.img_box .route_box img {
  margin-right: 5px;
}
.activer_order_row .order_info_box.row > .col.text_box {
  font-size: 14px;
  letter-spacing: 0.28px;
  color: #414042;
}
.activer_order_row .order_info_box.row > .col.text_box h2 {
  font-weight: normal;
  font-size: 20px;
  letter-spacing: 0.4px;
  color: rgb(65, 64, 66);
  text-transform: uppercase;
  margin: 0;
}
.activer_order_row .order_info_box.row > .col.text_box .time_row {
  color: #078F59;
}
.activer_order_row .order_info_box.row > .col.text_box .restaurant_row {
  margin-top: 15px;
}
.activer_order_row .order_info_box.row > .col.text_box .restaurant_row h3 {
  font-size: 18px;
  margin: 0;
  letter-spacing: 0.36px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 5px;
}
.activer_order_row .order_info_box.row > .col.text_box .restaurant_row strong {
  font-weight: normal;
  font-size: 15px;
  letter-spacing: 0.3px;
  color: #9C9C9C;
}
.activer_order_row .count_down {
  background: #078F59;
  color: #fff;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.28px;
  padding: 15px;
}
.activer_order_row .count_down.timeout {
  background: black;
}
.activer_order_row .count_down span {
  letter-spacing: 0.54px;
  color: #FFFFFF;
  font-size: 27px;
}

body .hand_over_page .container.header_section header {
  overflow-x: visible;
}
body .hand_over_page .activer_order_row {
  padding-top: 0 !important;
}
body .hand_over_page .container.header_section header .fig {
  background: #fff;
  height: auto;
}
body .hand_over_page .container.header_section header .fig .h1_box h1 {
  font-size: 20px;
  text-align: center;
  font-weight: normal;
  color: #414042;
  text-transform: none;
}
body .hand_over_page .container.header_section header .fig h2 {
  font-family: "Syaquita", serif;
  font-size: 35px;
  text-align: left;
  font-weight: normal;
  color: #414042;
}
body .hand_over_page .container.content_section {
  top: -25px;
  padding-bottom: 200px !important;
}
body .hand_over_page .order_detail.content {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}
body .hand_over_page .order_detail.content .row .col {
  font-size: 13px;
  text-align: left;
  font-weight: normal;
  color: #078F59;
}
body .hand_over_page .order_detail.content .row .col.ordered {
  color: #757575;
}
body .hand_over_page .set_delivery_row {
  color: #414042;
}
body .hand_over_page .set_delivery_row h3 {
  font-size: 18px;
  text-align: center;
  font-weight: normal;
}
body .hand_over_page .set_delivery_row .swith_box {
  position: relative;
}
body .hand_over_page .set_delivery_row .swith_box .react-switch-bg:after {
  content: "Slide if order is handed over";
  position: absolute;
  font-size: 13px;
  text-align: left;
  color: #414042;
  width: 100%;
  text-align: center;
  top: 13px;
  left: 15px;
}
body .hand_over_page .set_delivery_row .swith_box.hu .react-switch-bg:after {
  content: "Csúsztassa el, ha átvette";
}

body .user_profile_page {
  padding-bottom: 100px;
}
body .user_profile_page .logut_btn {
  color: #078F59 !important;
  position: absolute;
  right: 10px;
  font-size: 18px;
  display: inline-block;
  height: 37px;
  line-height: 37px;
  font-weight: bold;
}
body .user_profile_page .logut_btn i {
  font-size: 25px;
}
body .user_profile_page .logut_btn span {
  vertical-align: top;
}
body .user_profile_page .logut_btn:hover {
  cursor: pointer;
}
body .user_profile_page .container.content_section {
  border-radius: 0 !important;
  padding: 0;
  width: 100%;
}
body .user_profile_page .container.content_section .h1_box {
  margin-top: 120px;
}
body .user_profile_page .container.content_section .h1_box h1 {
  font-size: 23px;
  text-align: center !important;
  font-family: "VisbyCF Bold", serif;
  margin: 0;
  letter-spacing: 1px;
}
body .user_profile_page .container.content_section .default_data_row {
  padding: 0 35px 25px;
}
body .user_profile_page .container.content_section .default_data_row .checkbox {
  display: inline-block;
  margin-right: 15px;
}
body .user_profile_page .container.content_section .default_data_row .form-row {
  margin-top: 15px;
}
body .user_profile_page .container.content_section .default_data_row .btn {
  border-radius: 40px;
}
body .user_profile_page .container.content_section .othe_data_row {
  padding: 25px 35px;
}
body .user_profile_page .container.content_section .othe_data_row label {
  text-align: left;
  font-weight: normal;
  line-height: 20px;
  color: #414042;
  padding: 10px 5px;
  margin: 0;
  font-size: 14px;
}
body .user_profile_page .container.content_section .othe_data_row .btn-link {
  font-size: 12px;
  text-align: right;
  font-weight: bold;
  color: #078F59;
  background-color: transparent;
  text-transform: uppercase;
  text-decoration: underline;
}
body .user_profile_page .container.content_section .othe_data_row .checkbox label {
  padding: 0;
}
body .user_profile_page .container.content_section .othe_data_row .checkbox label a {
  color: #078F59;
  text-decoration: underline;
}
body .user_profile_page .container.content_section .type_checkbox_row {
  background: #F2F2F2;
  padding: 25px 35px;
}
body .user_profile_page .container.content_section .type_checkbox_row legend {
  font-size: 14px;
  color: #414042;
  margin-top: 20px;
  font-weight: bold;
}

.mt15 {
  margin-top: 15px;
}

body .rateing_page .container.header_section header .fig .h1_box h1 {
  text-transform: none;
  font-weight: normal;
  font-size: 22px;
}
body .rateing_page .container.content_section {
  top: -40px;
  border-radius: 0;
  min-height: calc(100vh - 340px);
}
body .rateing_page .logo_box {
  position: absolute;
  top: -43px;
  left: calc(50% - 46px);
  padding: 5px;
  width: 93px;
  height: 83px;
  overflow: hidden;
  border-radius: 15px;
  border-bottom-left-radius: 0;
  background: #fff;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
}
body .rateing_page .logo_box img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
body .rateing_page h1 {
  margin-top: 25px;
  font-size: 25px;
  text-align: center;
  font-weight: bold;
  color: #414042;
  text-transform: uppercase;
}
body .rateing_page h2 {
  font-size: 18px;
  text-align: center;
  font-weight: normal;
  color: #9C9C9C;
}
body .rateing_page .rateing_row {
  margin-top: 20px;
  text-align: center;
}
body .rateing_page .rateing_row a {
  margin-left: 10px;
  margin-right: 10px;
  display: inline-block;
}
body .rateing_page .rateing_row a:first-child {
  margin-left: 0;
}
body .rateing_page .rateing_row a:last-child {
  margin-right: 0;
}
body .rateing_page .notice_row {
  margin-top: 50px;
  font-size: 17px;
  letter-spacing: 0.34px;
  color: #414042;
  text-transform: uppercase;
  text-align: center;
}

.loading_row {
  padding-top: 30px;
  text-align: center;
}

.form_back_btn {
  display: inline-block;
  margin-top: 30px;
  color: #048f59 !important;
  font-weight: bold;
}

.address-box .form-row {
  margin-bottom: 15px;
}
.address-box h1 {
  font-family: "VisbyCF Bold", serif;
  font-size: 24px;
  color: #282829;
  letter-spacing: 1px;
  margin: 30px 0;
}

.highlight-label .content {
  background: #592E8D;
  box-shadow: 5px 15px 20px rgba(89, 46, 141, 0.2);
  padding: 25px 0;
  border-radius: 20px;
  font-family: "VisbyCF Bold", serif;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 30px;
}
.highlight-label .content .icon_container {
  display: inline-block;
  float: left;
  margin-top: -70px;
  margin-left: 25px;
}
.highlight-label .content .label {
  margin-left: 20px;
  color: #fff;
  font-size: 16px;
}

/*# sourceMappingURL=styles.css.map */
