.rkn{
     width: 100%;
     margin-top: .2rem;
     display: -webkit-inline-box;
     display: -webkit-inline-flex;
     display: -moz-inline-box;
     display: -ms-inline-flexbox;
     display: inline-flex;
     text-align: left;
     -webkit-box-align: center;
     -webkit-align-items: center;
        -moz-box-align: center;
         -ms-flex-align: center;
             align-items: center;
}
 .rkncheckboxbutton {
     vertical-align: middle;
     margin: .5rem .5rem .5rem 0;
     cursor: pointer;
     fill: none;
     stroke-width: 6px;
     width: 2.5rem;
     min-width: 2.5rem;
}
 .rkncheckboxbutton .rkncheck{
     stroke: transparent;
}
 .rkncheckboxbutton .rkncheckbox{
     stroke: #3F488E;
}
 .rkncheckboxbutton.checked .rkncheck,.rkncheckboxbutton.checked .rkncheckbox, .rkncheckboxbutton:hover .rkncheckbox, .rkncheckboxbutton:hover .rkncheck{
     stroke: #6D7BF4;
}
.submit-wrapper {
  position: relative;
  display: inline-block;
  margin-top: 1rem;
}
.submit-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: transparent;
  z-index: 10;
}
button:not([disabled]) + .submit-overlay {
  display: none;
}
input.error {
    border: 1px solid rgba(251, 134, 50, 1)!important;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.rkn.error .rkncheckboxbutton .rkncheckbox {
     stroke: rgba(251, 134, 50, 1);
}
.rkn.error .rkncheckboxbutton.checked .rkncheckbox{
     stroke: #6D7BF4;
}
.rkn small{
    color: #3F488E;
}
.importantfield{
    position: absolute;
    bottom: 0.1rem;
    right: 0.1rem;
    color: rgba(202, 204, 242, 0.7);
}
/* Cookies */
 .cookie-notification {
     position: fixed;
     bottom: 0;
     left: 0;
     width: 100%;
     display: -webkit-box;
     display: -webkit-flex;
     display: -moz-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-pack: center;
     -webkit-justify-content: center;
     -moz-box-pack: center;
     -ms-flex-pack: center;
     justify-content: center;
     -webkit-box-align: end;
     -webkit-align-items: end;
     -moz-box-align: end;
     -ms-flex-align: end;
     align-items: end;
     z-index: 9999999!important;
}
 .cookie-notification__content {
     background: #ffffff;
     -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 25px -5px, rgba(0, 0, 0, 0.1) 0px 8px 10px -6px;
     -moz-box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 25px -5px, rgba(0, 0, 0, 0.1) 0px 8px 10px -6px;
     box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 25px -5px, rgba(0, 0, 0, 0.1) 0px 8px 10px -6px;
     padding: .6rem 1.2rem;
     width: 100%;
     max-width: 1100px;
     position: relative;
     margin-bottom: 1rem;
     -webkit-border-radius: 1.143rem;
     -moz-border-radius: 1.143rem;
     border-radius: 1.143rem;
}
 .cookie-notification__content a{
     color: #3F488E;
     margin: 0;
     text-decoration: none;
     font-size: .875rem;
     line-height: 1rem;
}
 .cookie-notification__content a:hover{
     color: #6D7BF4;
}
 .cookie-notification__content p {
     margin: 0;
     text-align: left;
     font-size: .875rem;
     line-height: 1rem;
     min-width: 60%;
     color: #3F488E;
}
 .cookie-notification__content .content{
     -webkit-box-align: center;
     -webkit-align-items: center;
     -moz-box-align: center;
     -ms-flex-align: center;
     -ms-grid-row-align: center;
     align-items: center;
     -webkit-box-pack: justify;
     -webkit-justify-content: space-between;
     -moz-box-pack: justify;
     -ms-flex-pack: justify;
     justify-content: space-between;
}
 .cookie-notification__close {
     position: absolute;
     right: .6rem;
     top:0;
     bottom: 0;
     margin: auto;
     width: 1.8rem;
     height: 1.8rem;
     cursor: pointer;
     stroke: #6D7BF4;
     fill: none;
     stroke-width:2;
     stroke-linecap:round;
     stroke-linejoin:round;
     -webkit-transition: all 0.3s ease-in-out;
     -o-transition: all 0.3s ease-in-out;
     -moz-transition: all 0.3s ease-in-out;
     transition: all 0.3s ease-in-out;
}
 .cookie-notification__close:hover {
     stroke: #3F488E;
     -webkit-transition: all 0.3s ease-in-out;
     -o-transition: all 0.3s ease-in-out;
     -moz-transition: all 0.3s ease-in-out;
     transition: all 0.3s ease-in-out;
}
 .cookie-notification__buttons {
     -webkit-box-align: center;
     -webkit-align-items: center;
     -moz-box-align: center;
     -ms-flex-align: center;
     -ms-grid-row-align: center;
     align-items: center;
     -webkit-box-pack: end;
     -webkit-justify-content: end;
     -moz-box-pack: end;
     -ms-flex-pack: end;
     justify-content: end;
     padding-right: 2rem;
}
 #accept-cookies, #decline-cookies{
     overflow: hidden;
     margin-left: 1rem;
     cursor: pointer;
     text-decoration: none;
     display: -webkit-inline-box;
     display: -webkit-inline-flex;
     display: -moz-inline-box;
     display: -ms-inline-flexbox;
     display: inline-flex;
     -webkit-box-align: center;
     -webkit-align-items: center;
     -moz-box-align: center;
     -ms-flex-align: center;
     -ms-grid-row-align: center;
     align-items: center;
     padding: .857rem 1.5rem;
     font-size: 1rem;
}
 #accept-cookies{
    background: rgba(251, 134, 50, 1);
    background: linear-gradient(90deg,rgba(185, 93, 54, 1) 0%, rgba(251, 134, 50, 1) 100%);
    color: #ffffff;
}
 #accept-cookies:hover{
    background: rgba(185, 93, 54, 1);
    background: linear-gradient(90deg,rgba(251, 134, 50, 1) 0%, rgba(185, 93, 54, 1) 100%);
}
 #decline-cookies{
     background: #6D7BF4;
    background: linear-gradient(90deg,#6D7BF4 0%, #3F488E 100%);
}
 #decline-cookies:hover {
    background: #3F488E;
    background: linear-gradient(90deg,#3F488E 0%, #6D7BF4 100%);
}
 @media only screen and (max-width:1000px){
     .cookie-notification__close{
         display: none;
    }
     .cookie-notification__buttons {
         padding-right: 0;
    }
     .cookie-notification__content .content{
         -webkit-flex-wrap: wrap;
         -ms-flex-wrap: wrap;
         flex-wrap: wrap;
    }
     .cookie-notification__buttons {
         -webkit-box-pack: start;
         -webkit-justify-content: start;
         -moz-box-pack: start;
         -ms-flex-pack: start;
         justify-content: start;
    }
     .cookie-notification__content p{
         width: 100%;
         margin-bottom: .75rem;
    }
     #accept-cookies, #decline-cookies{
         margin: 0 1rem 0 0;
    }
}
