html {
  position: relative;
  min-height: 100%;
}
body {
  font-family: 'Roboto', sans-serif;
}

::selection {
  background: #fdf25d;
  color: #212529;
}
:root {
  --global-shadow-1: 5px 9px 25px 0px rgba(0,0,0,0.25);
  --global-shadow-2: 0 10px 25px 10px rgba(0, 0, 0, 0.1);
  --global-radius-1: 10px;
  --global-radius-2: 15px;
  --global-font-size-default: 10pt;
  --global-font-size-title: 15pt;
  --global-font-size-menu: 13pt;
  --global-nav-shadow: 0 0 4px rgba(0,0,0,.08);
  --global-block-shadow: 0 1px 0 0 #d3d9de,0 0 0 1px #e7e8ec;
  --global-dropdown-shadow: 0 0 0 1px rgba(0,0,0,0.07), 0 4px 8px 0 rgba(0,0,0,0.07);
  --swiper-theme-color: #036cc5;
  --global-bg-color: #f2f3f7;
  --global-colors-body: #212529;
  --global-colors-hover-navs-link: rgba(174, 183, 194, 0.12);
  --global-colors-navbar-icon: #8b949e;
  --global-colors-gray_10: rgba(0,0,0,.12);
  --global-colors-gray_20: #818c99;
  --global-colors-gray_30: #d7d8d9;
  --global-colors-gray_50: #f2f3f5;
  --global-colors-gray_100: rgba(0,28,61,.05);
  --global-colors-gray_120: #d3d9de;
  --global-colors-gray_200: #818c99;
  --global-colors-dark_200: #495057;
  --global-colors-dark_220: rgba(0, 0, 0, 0.08);
  --global-colors-accent: #19b1f4;
  --global-colors-accent-active: #1d99d0;
  --global-opacity-disabled: 0.7;
}

a[href=#finish] {
  background-color: var(--green);
}

.rtl {
  direction: rtl;
  text-align: right;
}
.rtl .text-right {
  float:left !important;
}

@media (min-width: 768px) {
  .navbar-brands
  {
    position: absolute;
    left: 45%;
    top: 6px;
    transform: translateX(-45%);
  }
}
.ul-none li {
  margin-left: 1rem;
}
.navbar {
  min-height: 4rem;
}

/* Sections
------------------------------------------*/
.global-section {
  padding: 5rem 0;
}
.global-section.--bg-image-main {
  background-image: url(/images/main/bg-1.png);
  background-size: cover;
  padding: 10rem 0;
}

.global-section-title {
  position: relative;
}

.global-heading-level-1 {
  font-weight: 900;
  margin-bottom: 24px;
  font-size: 60px;
  letter-spacing: .01em;
}
.global-heading-level-2 {
  font-weight: 700;
  font-size: 40px;
  letter-spacing: .01em;
}
.global-heading-level-3 {
  font-weight: 700;
  font-size: 28px;
  letter-spacing: .01em;
}
.global-heading-level-4 {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: .01em;
}
.global-heading-level-5 {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .01em;
}

/* Services card
------------------------------------------*/
.ServicesCard .card {
  background-color: #f8f9fa;
}
.ServicesCard .card:hover {
  border-color: #007bfe;
  background-color: #00cffe45;
  cursor: pointer;
}
.ServicesCard .card:hover .btn {
  background-color: #007bfe;
  color: #fff;
}

.ServicesCard .card.active {
  border-color: #007bfe;
  background-color: #00cffe45;
}
/* Steps
------------------------------------------*/
.wizard,
.tabcontrol
{
  display: block;
  width: 100%;
  overflow: hidden;
}

.wizard a,
.tabcontrol a
{
  outline: 0;
}

.wizard ul,
.tabcontrol ul
{
  list-style: none !important;
  padding: 0;
  margin: 0;
}

.wizard ul > li,
.tabcontrol ul > li
{
  display: block;
  padding: 0;
}

/* Accessibility */
.wizard > .steps .current-info,
.tabcontrol > .steps .current-info
{
  position: absolute;
  left: -999em;
}

.wizard > .content > .title,
.tabcontrol > .content > .title
{
  position: absolute;
  left: -999em;
}


.wizard > .steps
{
  position: relative;
  display: block;
  width: 100%;
}

.wizard.vertical > .steps
{
  display: inline;
  float: left;
  width: 30%;
}

.wizard > .steps .number
{
  font-size: 1.3rem;
}

.wizard > .steps > ul > li
{
  width: 25%;
}

.wizard > .steps > ul > li,
.wizard > .actions > ul > li
{
  float: left;
}

.wizard.vertical > .steps > ul > li
{
  float: none;
  width: 100%;
}

.wizard > .steps a,
.wizard > .steps a:hover,
.wizard > .steps a:active
{
  display: block;
  width: auto;
  margin: 0 0.5em 0.5em;
  padding: 1em 1em;
  text-decoration: none;

  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.wizard > .steps .disabled a,
.wizard > .steps .disabled a:hover,
.wizard > .steps .disabled a:active
{
  background: #eee;
  color: #aaa;
  cursor: default;
}

.wizard > .steps .current a,
.wizard > .steps .current a:hover,
.wizard > .steps .current a:active
{
  background: var(--primary);
  color: #fff;
  cursor: default;
}

.wizard > .steps .done a,
.wizard > .steps .done a:hover,
.wizard > .steps .done a:active
{
  background: var(--success);
  color: #fff;
}

.wizard > .steps .error a,
.wizard > .steps .error a:hover,
.wizard > .steps .error a:active
{
  background: var(--danger);
  color: #fff;
}

.wizard > .content
{

}

.wizard.vertical > .content
{
  display: inline;
  float: left;
  margin: 0 2.5% 0.5em 2.5%;
  width: 65%;
}

.wizard > .content > .body
{

}

.wizard > .content > .body ul
{
  list-style: disc !important;
}

.wizard > .content > .body ul > li
{
  display: list-item;
}

.wizard > .content > .body > iframe
{
  border: 0 none;
  width: 100%;
  height: 100%;
}

.wizard > .content > .body input
{

}

.wizard > .content > .body input[type="checkbox"]
{

}

.wizard > .content > .body input.error
{

}

.wizard > .content > .body label
{

}

.wizard > .content > .body label.error
{

}

.wizard > .actions
{
  position: relative;
  display: block;
  text-align: center;
  width: 100%;
  margin: 3rem 0;
}

.wizard.vertical > .actions
{
  display: inline;
  float: right;
  margin: 0 2.5%;
  width: 95%;
}

.wizard > .actions > ul
{
  display: inline-block;
  text-align: right;
}

.wizard > .actions > ul > li
{
  margin: 0 0.5em;
}

.wizard.vertical > .actions > ul > li
{
  margin: 0 0 0 1em;
}

.wizard > .actions a,
.wizard > .actions a:hover,
.wizard > .actions a:active
{
  background: var(--primary);
  color: #fff;
  display: block;
  padding: 0.5em 1em;
  text-decoration: none;

  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.wizard > .actions .disabled a,
.wizard > .actions .disabled a:hover,
.wizard > .actions .disabled a:active
{
  background: #eee;
  color: #aaa;
}

.wizard > .loading
{
}

.wizard > .loading .spinner
{
}




.tabcontrol > .steps
{
  position: relative;
  display: block;
  width: 100%;
}

.tabcontrol > .steps > ul
{
  position: relative;
  margin: 6px 0 0 0;
  top: 1px;
  z-index: 1;
}

.tabcontrol > .steps > ul > li
{
  float: left;
  margin: 5px 2px 0 0;
  padding: 1px;

  -webkit-border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-topright: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.tabcontrol > .steps > ul > li:hover
{
  background: #edecec;
  border: 1px solid #bbb;
  padding: 0;
}

.tabcontrol > .steps > ul > li.current
{
  background: #fff;
  border: 1px solid #bbb;
  border-bottom: 0 none;
  padding: 0 0 1px 0;
  margin-top: 0;
}

.tabcontrol > .steps > ul > li > a
{
  color: #5f5f5f;
  display: inline-block;
  border: 0 none;
  margin: 0;
  padding: 10px 30px;
  text-decoration: none;
}

.tabcontrol > .steps > ul > li > a:hover
{
  text-decoration: none;
}

.tabcontrol > .steps > ul > li.current > a
{
  padding: 15px 30px 10px 30px;
}

.tabcontrol > .content
{
  position: relative;
  display: inline-block;
  width: 100%;
  height: 35em;
  overflow: hidden;
  border-top: 1px solid #bbb;
  padding-top: 20px;
}

.tabcontrol > .content > .body
{
  float: left;
  position: absolute;
  width: 95%;
  height: 95%;
  padding: 2.5%;
}

.tabcontrol > .content > .body ul
{
  list-style: disc !important;
}

.tabcontrol > .content > .body ul > li
{
  display: list-item;
}

/* Preloader container
------------------------------------------*/
.global-preloader {
  display: none;
}
.global-preloader-overlay {
  position: absolute;
  z-index: 9998;
  top: 0;
  left: 0;
  right: auto;
  height: 100%;
  width: 100%;
  background-color: rgb(0 0 0 / 3%);
  -webkit-backdrop-filter: saturate(180%) blur(2px);
  backdrop-filter: saturate(180%) blur(2px);
}
.global-preloader-spinner {
  position: absolute;
  z-index: 9999;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgb(0 0 0 / 60%);
  width: 100px;
  padding: 1.5rem 0;
}


/* Signature
------------------------------------------*/
.signature-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.signature-pad {
  position: absolute;
  left: 0;
  top: 0;
  width:100%;
  height:500px;
  background-color: white;
}


/* Croppie
------------------------------------------*/
.croppie-container {
    width: 100%;
    height: 100%;
}

.croppie-container .cr-image {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: 0 0;
    max-height: none;
    max-width: none;
}

.croppie-container .cr-boundary {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.croppie-container .cr-viewport,
.croppie-container .cr-resizer {
    position: absolute;
    border: 2px solid #fff;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    box-shadow: 0 0 2000px 2000px rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.croppie-container .cr-resizer {
  z-index: 2;
  box-shadow: none;
  pointer-events: none;
}

.croppie-container .cr-resizer-vertical,
.croppie-container .cr-resizer-horisontal {
  position: absolute;
  pointer-events: all;
}

.croppie-container .cr-resizer-vertical::after,
.croppie-container .cr-resizer-horisontal::after {
    display: block;
    position: absolute;
    box-sizing: border-box;
    border: 1px solid black;
    background: #fff;
    width: 10px;
    height: 10px;
    content: '';
}

.croppie-container .cr-resizer-vertical {
  bottom: -5px;
  cursor: row-resize;
  width: 100%;
  height: 10px;
}

.croppie-container .cr-resizer-vertical::after {
    left: 50%;
    margin-left: -5px;
}

.croppie-container .cr-resizer-horisontal {
  right: -5px;
  cursor: col-resize;
  width: 10px;
  height: 100%;
}

.croppie-container .cr-resizer-horisontal::after {
    top: 50%;
    margin-top: -5px;
}

.croppie-container .cr-original-image {
    display: none;
}

.croppie-container .cr-vp-circle {
    border-radius: 50%;
}

.croppie-container .cr-overlay {
    z-index: 1;
    position: absolute;
    cursor: move;
    touch-action: none;
}

.croppie-container .cr-slider-wrap {
    width: 75%;
    margin: 15px auto;
    text-align: center;
}

.croppie-result {
    position: relative;
    overflow: hidden;
}

.croppie-result img {
    position: absolute;
}

.croppie-container .cr-image,
.croppie-container .cr-overlay,
.croppie-container .cr-viewport {
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

/*************************************/
/***** STYLING RANGE INPUT ***********/
/*************************************/
/*http://brennaobrien.com/blog/2014/05/style-input-type-range-in-every-browser.html */
/*************************************/

.cr-slider {
    -webkit-appearance: none;
/*removes default webkit styles*/
  /*border: 1px solid white; *//*fix for FF unable to apply focus style bug */
    width: 300px;
/*required for proper track sizing in FF*/
    max-width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
    background-color: transparent;
}

.cr-slider::-webkit-slider-runnable-track {
    width: 100%;
    height: 3px;
    background: rgba(0, 0, 0, 0.5);
    border: 0;
    border-radius: 3px;
}

.cr-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #ddd;
    margin-top: -6px;
}

.cr-slider:focus {
    outline: none;
}
/*
.cr-slider:focus::-webkit-slider-runnable-track {
background: #ccc;
}
*/

.cr-slider::-moz-range-track {
    width: 100%;
    height: 3px;
    background: rgba(0, 0, 0, 0.5);
    border: 0;
    border-radius: 3px;
}

.cr-slider::-moz-range-thumb {
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #ddd;
    margin-top: -6px;
}

/*hide the outline behind the border*/
.cr-slider:-moz-focusring {
    outline: 1px solid white;
    outline-offset: -1px;
}

.cr-slider::-ms-track {
    width: 100%;
    height: 5px;
    background: transparent;
/*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
  border-color: transparent;/*leave room for the larger thumb to overflow with a transparent border */
  border-width: 6px 0;
  color: transparent;/*remove default tick marks*/
}
.cr-slider::-ms-fill-lower {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}
.cr-slider::-ms-fill-upper {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}
.cr-slider::-ms-thumb {
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #ddd;
  margin-top:1px;
}
.cr-slider:focus::-ms-fill-lower {
  background: rgba(0, 0, 0, 0.5);
}
.cr-slider:focus::-ms-fill-upper {
  background: rgba(0, 0, 0, 0.5);
}
/*******************************************/

/***********************************/
/* Rotation Tools */
/***********************************/
.cr-rotate-controls {
  position: absolute;
  bottom: 5px;
  left: 5px;
  z-index: 1;
}
.cr-rotate-controls button {
  border: 0;
  background: none;
}
.cr-rotate-controls i:before {
  display: inline-block;
  font-style: normal;
  font-weight: 900;
  font-size: 22px;
}
.cr-rotate-l i:before {
  content: 'в†є';
}
.cr-rotate-r i:before {
  content: 'в†»';
}

/* Other
------------------------------------------*/
.btn-group-toggle .btn {
  cursor: pointer;
}


.dropzone {
  border: 2px dashed #d2d2d2;
  border-radius: 5px;
  background: white;
  padding: 2rem 0;
}
.dropzone.dz-drag-hover {
  border-color: var(--green);
}
.dropzone .dz-message {
  margin: 0;
}
.dz-icon-file {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.intl-tel-input {
  width: 100%;
}

.select2-container .select2-selection--single,
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 38px!important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 38px!important;
}
.select2-container--default .select2-selection--single {
  border: 1px solid #ced4da!important;
}
.select2-container--default .select2-selection--single .select2-selection__clear {
  height: 37px!important;
}

.ribbon {
    /* width: 32px; */
    height: 40px;
    line-height: 40px;
    padding-left: 15px;
    position: absolute;
    left: -10px;
    top: 12px;
    background: #007bfe;
    color: #fff;
    font-weight: bold;
    font-size: 11pt;
}
.ribbon:before, .ribbon:after {
  content: "";
  position: absolute;
}
.ribbon:before {
  height: 0;
  width: 0;
  top: -9px;
  left: 0;
  border-bottom: 9px solid #0a4079;
  border-left: 9px solid transparent;
}
.ribbon:after {
  height: 0;
  width: 0;
  right: -14.5px;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 15px solid #007bfe;
}

.widgetScreen {
  z-index: 1060!important;
  height: 100%!important;
}
.iframeBox {
    bottom: 0!important;
    height: 800px!important;
}