@charset "utf-8";

/* IMPORT RESET */
@import url("normalize.css");

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	*behavior: url(../../js/boxsizing.htc);
	/*
		If you need support for IE7 and lower make
		sure the boxsizing.htc file is linked properly.
		More info here:  https://github.com/Schepp/box-sizing-polyfill
	*/
}

/*Scrollbar CSS*/
::-webkit-scrollbar {
    /* width: 0px; */
    width: 6px;
    /* height: 0px; */
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #fff;
}

::-webkit-scrollbar-thumb {
    /*background: #88c932;*/
    background: #222;
}

/*font*/
@font-face
{
    font-family: 'segoe-ui';
    src: url('../../fonts/segoeui.ttf');
}
.ft-segoe-ui {
	font-family: 'segoe-ui';
}

@font-face
{
    font-family: 'segoe-ui-bold';
    src: url('../../fonts/segoeuib.ttf');
}
.ft-segoe-ui-bold {
	font-family: 'segoe-ui-bold';
}

@font-face
{
    font-family: 'segoe-ui-italic';
    src: url('../../fonts/segoeuii.ttf');
}
.ft-segoe-ui-italic {
	font-family: 'segoe-ui-italic';
}

@font-face
{
    font-family: 'segoe-ui-bold-italic';
    src: url('../../fonts/segoeuiz.ttf');
}
.ft-segoe-ui-bold-italic {
	font-family: 'segoe-ui-bold-italic';
}

@font-face
{
    font-family: 'segoe-ui-semibold';
    src: url('../../fonts/seguisb.ttf');
}
.ft-segoe-ui-semibold {
	font-family: 'segoe-ui-semibold';
}

.window-height {
	position: fixed;
	top: 0px;
	left: 0px;
	height: 100vh;
	width: 0px;
}

.window-width {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100vw;
	height: 0px;
}


/* Global */
html, body {
	padding: 0px;
	margin: 0px;
}

img {
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	color: inherit;
	text-decoration: none;
}

a:focus {
	outline: 0;
}

input:focus {
    outline: 0px;
}

.color-orange-creids {
	color: #f7961f;
}

.color-blue-creids {
	color: #222;
}

.color-green {
	color: green;
}

.color-blue {
	color: blue;
}

.color-red {
	color: red;
}

.color-orange {
	color: orange;
}

.bg-orange-creids {
	background: #f7961f;
}

.bg-blue-creids {
	background: #222;
}

.bg-green {
	background: green !important;
}

.bg-blue {
	background: blue !important;
}

.bg-red {
	background: red !important;
}

.bg-orange {
	background: orange !important;
}


.blur-container {
	position: fixed;
	display: block;
	width: 100%;
	height: 100vh;
	left: 0px;
	top: 0px;
	/* background: rgba(255, 255, 255, 0.9); */
	background: rgba(0, 0, 0, 0.8);
	z-index: 200;
}

.blur-container.hiden {
    display: none;
}

.error-msg.hiden {
    display: none;
}

/* ----- Master CSS ----- */

.blur-container {
    position: fixed;
    display: block;
    width: 100%;
    height: 100vh;
    left: 0px;
    top: 0px;
    background: rgba(255, 186, 53, 0.8);
    z-index: 1;
}

.blur-container.hiden {
    display: none;
}

.error-msg.hiden {
    display: none;
}

.blur-content {
    position: relative;
    display: block;
    width: calc(100% - 60px);
    max-width: 425px;
    padding: 60px 20px;
    line-height: 24px;
    color: #222;
    font-size: 14px;
    background: #fff;
    text-align: center;
    margin: 0px auto;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.blur-content.success {
    border: 2px solid green;
}

.blur-content.warning {
    border: 2px solid orange;
}

.blur-content.error {
    border: 2px solid red;
}

.blur-content-icon {
    position: relative;
    display: block;
    font-size: 35px;
    margin-bottom: 10px;
}

.blur-content.success .blur-content-icon {
    color: green;
}

.blur-content.warning .blur-content-icon {
    color: orange;
}

.blur-content.error .blur-content-icon {
    color: red;
}

.blur-content > span {
    position: relative;
    display: block;
    margin: 0px auto 30px;
    font-size: 16px;
}

.blur-but-group {
    position: relative;
    display: block;
    width: 100%;
}

.blur-close {
    position: absolute;
    display: block;
    right: -45px;
    font-size: 40px;
    top: 0px;
    color: #fff;
    cursor: pointer;
}

.line80 {
    position: fixed;
    top: 80vh;
    left: 0px;
    width: 0px;
    height: 0px;
}

.line60 {
    position: fixed;
    top: 60vh;
    left: 0px;
    width: 0px;
    height: 0px;
}

.line-text {
    position: fixed;
    display: block;
    top: 0vh;
    left: 0px;
    z-index: 10000;
    font-size: 30px;
}

.top-anim-text {
    position: absolute;
    display: block;
    font-size: 25px;
    left: 0px;
    top: 0px;
}

.window-width {
    position: fixed;
    /* height: 0px; */
    width: 100vw;
    top: 0px;
    left: 0px;
    font-size: 20px;
    color: #fff;
    z-index: 999;
}

.window-height {
    position: fixed;
    /* height: 0px; */
    height: 100vh;
    top: 0px;
    left: 0px;
    font-size: 20px;
    color: #fff;
    z-index: 999;
}

.mid {
	position: relative;
	width: 100%;
	height: 100%;

	justify-content: center;
	display: flex;
	align-items: center;
}

.container {
    position: relative;
	display: block;
	width: 100%;
	max-width: unset;
	color: #222;
	font-size: 14px;
    padding: 50px 0px;
    background: url('../../img/front/kde2045_background.webp') no-repeat center center fixed;
    background-size: cover !important;
}

.logo {
    position: relative;
    display: block;
    width: 186px;
    margin: 0px auto 50px
}

.content {
    position: relative;
    display: block;
    width: calc(100% - 40px);
    max-width: 875px;
    margin: 0px auto 50px;
    padding: 50px 0px 50px;

    background: #fff;
        border-radius: 30px;
        box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
        -webkit-border-radius: 30px;
        -moz-border-radius: 30px;
        -ms-border-radius: 30px;
        -o-border-radius: 30px;
}

.content-view {
    position: relative;
    display: block;
    width: 100%;
    margin: 0px auto;

    overflow: hidden;
    white-space: normal;
    font-size: 0px;
}

.content-view > * {
    font-size: 14px;
}

.group {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 50%;
    padding: 0px 20px;
    text-align: center;
}

.group > * {
    text-align: left;
    max-width: 340px;
}

.note {
    position: relative;
    display: block;
    text-align: center;
    padding: 0px 20px;
    margin: 0px auto 40px;
    font-size: 14px;
    line-height: 25px;
}

.group-header {
    position: relative;
    display: block;
    margin-bottom: 30px;
    font-family: "segoe-ui-semibold";
    white-space: normal;
}

.group-title {
    position: relative;
    display: block;
    font-size: 19px;
    font-weight: normal;
    margin: 0px auto 10px;
}

.group-title span {
    position: relative;
    display: block;
    font-size: 14px;
}

.field {
    position: relative;
    display: block;
    width: 100%;
    margin: 0px auto 15px;
}

.field.last {
    margin-bottom: 50px;
}

.field-label {
    position: relative;
    display: inline-block;
    max-width: 100%;
    line-height: 20px;
    margin-bottom: 5px;
    font-weight: 500;
    font-family: 'segoe-ui-semibold';
}

span.required {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: red;
    margin-left: 5px;
}

span.error-validation {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: red;
    margin-left: 5px;
    font-style: italic;
}

.field-text {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    border: 1px solid #222;
    background: #fff;
    border-radius: 10px;
    padding: 0px 10px;
}

.field-checkbox {
    position: relative;
    display: block;
    font-size: 0px;
    width: 100%;
    white-space: normal;
}

.field-checkbox > * {
    font-size: 16px;
}

.field-check {
    position: relative;
    display: inline-block;
    vertical-align: top;
    top: 5px;
    width: 15px;
    margin: 0px 10px 0px 0px;
    text-align: left;
}

.field-labelcheckbox {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 35px);
}

.group-hide {
    display: none;
}

.next-hide {
    display: none;
}

.footer-container {
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-family: 'segoe-ui-semibold';
    margin-top: 100px;
}

.footer-container a {
    color: #ffbb36;
}




.butt {
  position: relative;
  display: table;
  padding: 12px 18px;
  transition: all 0.2s ease;
  border: none;
  background: none;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}

.butt.first {
  position: relative;
  display: table;
  padding: 12px 18px;
  transition: all 0.2s ease;
  border: none;
  margin: auto;
  background: none;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}

.butt.submit {
  position: relative;
  display: table;
  padding: 10px 18px;
  transition: all 0.2s ease;
  border: none;
  margin: auto;
  background: none;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}

.butt.add {
  position: absolute;
  display: table;
  padding: 12px 18px;
  transition: all 0.2s ease;
  border: none;
  top: 0px;
  right: 0px;
  background: none;
  cursor: pointer;
  -webkit-transition:;
  -moz-transition:;
  -ms-transition:;
  -o-transition:;
}

.butt.next {
  position: absolute;
  display: table;
  padding: 12px 18px;
  transition: all 0.2s ease;
  border: none;
  bottom: 50px;
  right: 30px;
  background: none;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}

.butt:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 50px;
  background: #ffbb36;
  width: 45px;
  height: 45px;
  transition: all 0.3s ease;
}

.butt.prev:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  display: block;
  border-radius: 50px;
  background: #ffbb36;
  width: 45px;
  height: 45px;
  transition: all 0.3s ease;
}

.butt span {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  font-family: "segoe-ui-bold";
  color: #222;
}

.butt svg {
  position: relative;
  top: 0;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #222;
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.butt.prev svg {
  position: relative;
  top: 0;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #222;
  stroke-width: 2;
  transition: all 0.3s ease;
  transform: translateX(-5px) rotate(180deg);
  -webkit-transform: translateX(-5px) rotate(180deg);
  -moz-transform: translateX(-5px) rotate(180deg);
  -ms-transform: translateX(-5px) rotate(180deg);
  -o-transform: translateX(-5px) rotate(180deg);
}

.butt.submit svg {
  position: relative;
  top: 3px;
  margin-left: 5px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #222;
  stroke-width: 2;
  transition: all 0.3s ease;
  transform: translateX(-5px);
  -webkit-transform: translateX(-5px);
  -moz-transform: translateX(-5px);
  -ms-transform: translateX(-5px);
  -o-transform: translateX(-5px);
}

.butt:hover:before {
  width: 100%;
  background: #ffbb36;
}

.butt:hover svg {
  transform: translateX(0);
}

.butt.prev:hover svg {
    transform: translateX(-10px) rotate(180deg);
    -webkit-transform: translateX(-10px) rotate(180deg);
    -moz-transform: translateX(-10px) rotate(180deg);
    -ms-transform: translateX(-10px) rotate(180deg);
    -o-transform: translateX(-10px) rotate(180deg);
}

.butt:active {
  transform: scale(0.95);
}



.select2-container .select2-selection--single {
    height: 50px;
    border: 1px solid #222;
    border-radius: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 48px;
    padding-left: 10px;
    color: #222;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px;
    width: 9px;
    right: 15px;
}

/* Desktops and laptops */
@media screen and (max-width : 1366px) {

}

@media screen and (max-width : 1200px) {

}

/* Tablet */
@media screen and (max-width: 1024px) {

}

/* Mobile */
@media screen and (max-width: 768px) {

}

@media screen and (max-width : 500px) {
    .group {
        display: block;
        width: 100%;
        margin: 0px auto 50px;
    }

    .group:last-child {
        margin-bottom: 0px;
    }

    .logo {
        width: 135px;
    }
}
