/* CF Pop Up */
#CF_popUp, #CF_popUp2 {
	display: none;
}

#CF_popUp.show, #CF_popUp2.show {
	display: block;
}

#CF_popUp *, #CF_popUp2 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

#CF_popUp .cf-box, #CF_popUp2 .cf-box {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    z-index: auto;
    display: block;
    border-radius: 10px;
    -webkit-box-shadow: 0 4px 15px 0 rgba(29,60,111,.25);
    box-shadow: 0 4px 15px 0 rgba(29,60,111,.25);
    width: 300px;
    max-height: none;
    bottom: auto;
    right: auto;
	background: #fff;
	overflow-y: auto;
}

#CF_popUp .cf-close, #CF_popUp2 .cf-close {
  font-size: 27px;
  font-weight: 200;
  cursor: pointer;
  display: block;
  text-decoration: none;
  position: absolute;
  z-index: 1;
  padding: 0;
  height: 30px;
  width: 30px;
  line-height: 28px;
  background-color: rgb(0 0 0 / 0.45);
  border-radius: 50%;
  color: #ffffff;
  top: 0px;
  right: -40px;
  text-align: center;
  transition: .4s;
}

#CF_popUp .cf-close:hover, #CF_popUp2 .cf-close:hover {
  background-color: rgb(0 0 0 / 0.65);
}

#CF_popUp .cf-box__inner-col, #CF_popUp2 .cf-box__inner-col {
    position: relative;
    background-repeat: no-repeat;
      padding: 15px 0;
    border-radius: 10px;
}

#CF_popUp .cf-box__inner-drag, #CF_popUp2 .cf-box__inner-drag {
  position: relative;
    z-index: auto;
    padding: 0;
    min-height: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

#CF_popUp .cf-element, #CF_popUp2 .cf-element {
  position: relative;
    z-index: 1;
}

#CF_popUp *+.cf-element, #CF_popUp2 *+.cf-element {
    margin-top: 10px;
}

#CF_popUp .cf-element__type-image, #CF_popUp2 .cf-element__type-image {
    text-align: center;
    line-height: 1;
}

#CF_popUp .cf-element__type-image .cf-element__inner, #CF_popUp2 .cf-element__type-image .cf-element__inner {
	width: 100%;
}

#CF_popUp .cf-element__inner, #CF_popUp2 .cf-element__inner {
  color: rgb(71, 71, 71); 
  font-size: 18px; 
  line-height: 1.3;
  text-align: center;
    word-wrap: break-word;
  position: relative;
    z-index: 2;
  width: 250px;
}

#CF_popUp .cf-element__type-text .cf-element__inner, #CF_popUp2 .cf-element__type-text .cf-element__inner {
	    margin: auto;
    text-transform: uppercase;
    color: rgb(92, 28, 157);
    font-weight: bold;
}

#CF_popUp .cf-element .cf-element__wrap, #CF_popUp2 .cf-element .cf-element__wrap {
    position: relative;
  padding-top: 5px;
}

#CF_popUp .cf-element .cf-element__wrap:after, #CF_popUp2 .cf-element .cf-element__wrap:after {
    content: "";
    display: table;
    width: 100%;
    height: 0;
    clear: both;
}

#CF_popUp .cf-element__type-image .cf-element__inner img. #CF_popUp2 .cf-element__type-image .cf-element__inner img {
    display: block;
    max-width: none;
    width: 100%;
    height: auto;
}

#CF_popUp .cf-element__type-form .cf-element__inner, #CF_popUp2 .cf-element__type-form .cf-element__inner {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

#CF_popUp .cf-form-group, #CF_popUp2 .cf-form-group {
    margin-bottom: 12px;
}

#CF_popUp .cf-form-group__control, #CF_popUp2 .cf-form-group__control {
    position: relative;
}

#CF_popUp .cf-form-group__control input[type=email] {
  -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    background: #fff;
    border-radius: 4px;
    border: none;
    -webkit-box-shadow: 0 0 0 1px rgba(47,69,103,.22);
    box-shadow: 0 0 0 1px rgba(47,69,103,.22);
    font-family: Roboto,Arial,sans-serif;
    font-weight: 400;
    color: #5e727b;
    margin: 0;
    outline: none;
      font-size: 15px;
    line-height: 16px;
    padding: 11px 15px;
    height: 38px;
	text-align: center;
}

#CF_popUp .cf-form-group__btn, #CF_popUp2 .cf-form-group__btn {
    width: 100%;
    border-radius: 5px;
    line-height: 1.3;
    text-align: center;
    border: none;
    outline: none;
    word-wrap: break-word;
    -webkit-transition: -webkit-box-shadow .1s ease;
    transition: -webkit-box-shadow .1s ease;
    -o-transition: box-shadow .1s ease;
    transition: box-shadow .1s ease;
    transition: box-shadow .1s ease, -webkit-box-shadow .1s ease;
    transition: box-shadow .1s ease,-webkit-box-shadow .1s ease;
    will-change: box-shadow;
    font-size: 15px;
    padding: 10px 15px 9px;
    cursor: default;
    color: rgb(255, 255, 255);
    background: rgb(92, 28, 157);
	cursor: pointer;
}

#CF_popUp .cf-form-group__btn span, #CF_popUp2 .cf-form-group__btn span {
    width: 100%;
    display: block;
}

#CF_popUp-call.bottom-corner, #CF_popUp2-call.bottom-corner {
    position:fixed;
    bottom:0;
    left:0;
    margin:0;
	z-index: 9999;
}

#CF_popUp .center-modal, #CF_popUp2 .center-modal {
	position: fixed;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}

#CF_popUp .cf-form-checkbox, #CF_popUp2 .cf-form-checkbox {
	text-align: left;
	font-size: 15px;
}

#CF_popUp .styled-checkbox, #CF_popUp2 .styled-checkbox {
  position: absolute;
  opacity: 0;
}

#CF_popUp .styled-checkbox + label, #CF_popUp2 .styled-checkbox + label {
    position: relative;
    cursor: pointer;
    padding: 0;
 }

#CF_popUp .styled-checkbox + label:before, #CF_popUp2 .styled-checkbox + label:before {
    content: '';
    margin-right: 10px;
    display: inline-block;
    vertical-align: text-top;
    width: 20px;
    height: 20px;
    /*border: 1px solid rgb(92, 28, 157);*/
	border: 1px solid rgb(0, 0, 0);
	border-radius: 3px;
}

#CF_popUp .styled-checkbox:checked + label:before, #CF_popUp2 .styled-checkbox:checked + label:before {
	/*background: rgb(92, 28, 157);*/
	background: rgb(0, 0, 0);
}

#CF_popUp .styled-checkbox:checked + label:after {
	content: '';
	position: absolute;
	left: 5px;
	top: 9px;
	background: white;
	width: 2px;
	height: 2px;
	-webkit-box-shadow: 
	  2px 0 0 white,
	  4px 0 0 white,
	  4px -2px 0 white,
	  4px -4px 0 white,
	  4px -6px 0 white,
	  4px -8px 0 white;
	        box-shadow: 
	  2px 0 0 white,
	  4px 0 0 white,
	  4px -2px 0 white,
	  4px -4px 0 white,
	  4px -6px 0 white,
	  4px -8px 0 white;
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
}

/* Minified */
#CF_popUp-call.hide, #CF_popUp2-call.hide {
	display: none;
}

.theme-background-color {
	background: rgb(92, 28, 157);
}

.theme-text-color {
	color: #ffffff;
}

.CF_popUp-middle {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	padding: 10px 20px;
	cursor: pointer;
	border-radius: 5px 5px 2px 2px;
}

.modal-wrapper {
	position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(49,70,105,.3);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.padding-top {
  padding-top: 50px!important;
}

/* //FORM FIX */
@media (max-width: 400px){
  #cookie-bar {
    bottom: 75px!important;
  }
}
