a:hover, a:focus {
/*     color: #f05b67!important; */
    text-decoration: none;
}

/* ----------------------------------- Cookie Consent Dialog ---------------------------------------------- */
.wsa-cookielaw {
	display: none;
}
.non-clickable-backdrop {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
  z-index: 10;
}
.cookie-consent-popup {
  position: fixed;
  z-index: 100;
  width: 600px;
  height: 600px;
  left: calc((100vw - 600px)/2);
  top: calc((100vh - 600px)/2);
}
.cookie-consent-popup .gui-form .gui-field{
	margin: 10px 0;
}
/* ----------------------------------- Cookie Consent Dialog ---------------------------------------------- */

/* ------------------------------------------ Popup's ----------------------------------------------------- */
.popup-window {
  position: fixed;
  z-index: 100;
  display: flex;
  align-items: center;
}
.inner-bl {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  width: 100%;
  padding: 40px;
}
.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
}
.close-btn:hover {
  cursor: pointer;
}
/* - */
.popup-actions {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
}
.popup-action-outlined { 
  flex: 1;
  padding: 10px;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #4fb334;
  color: #4fb334;
  text-align: center;
}
.popup-action-contained {
  flex: 1;
  padding: 10px;
  color: #fff;
  background: #4fb334;
  border-radius: 5px;
  text-align: center;
}
.popup-action-contained:hover {
  color: #fff;
}
.popup-action-outlined:hover {
  color: #4fb334;
}
/* - */
.popup-order-alert {
	width: 600px;
  height: 120px;
  left: calc((100vw - 600px)/2);
  top: calc((100vh - 120px)/2);
}
@media (max-width: 568px) {
  .popup-window {
  	max-width: 90%;
    max-height: 90%;
    left: calc((100vw - 90%) / 2);
    top: calc((100vh - 90%)/2);
  }
  .popup-actions {
    flex-direction: column;
    margin-top: 25px;
	}
  .cookie-consent-popup {
    height: 100vh;
  	max-height: 100%;
    max-width: 100%;
    top: 0;
    left: 0;
    right: 0;
  }
  .cookie-consent-popup .inner-bl {
  	padding: 20px;
  }
  .cookie-consent-popup .popup-title{
    margin: 10px 0;
  }
}
/* ---------------------------------------- end Popup's --------------------------------------------------- */
.d-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.d-flex-column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.flex-sb-cent {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
  flex-wrap: wrap;
}
.centered-content {
  text-align: center;
}
.width-100-p {
  width: 100%;
}
.width-80-p {
  width: 80%;
}
.width-70-p {
  width: 70%;
}
.width-60-p {
  width: 60%;
}
.width-50-p {
  width: 50%;
}
.width-40-p {
  width: 40%;
}
.width-30-p {
  width: 30%;
}
.width-20-p {
  width: 20%;
}
@media (max-width: 1200px) {
  .mob-width-100 {
    width: 100%;
  }
}
body {
  font-family:avenir,sans-serif!important;
  color:#2e2e2e;
  font-size:14px;
}
.backdrop {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
  z-index: 10;
}
/*---------------------------------------------- Custom GRID ----------------------------------------------*/
.col-xs-15,
.col-sm-15,
.col-md-15,
.col-md-30,
.col-lg-15 {
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
}
.col-xs-15 {
    width: 20%;
    float: left;
}
.col-xs-30 {
    width: 20%;
    float: left;
}
@media (min-width: 768px) {
.col-sm-15 {
        width: 20%;
        float: left;
    }
  .col-sm-30 {
        width: 40%;
        float: left;
    }
}
@media (min-width: 992px) {
    .col-md-15 {
        width: 25%;
        float: left;
    }
     .col-md-30 {
        width: 40%;
        float: left;
    }
}
@media (min-width: 1200px) {
    .col-lg-15 {
        width: 20%;
        float: left;
    }
     .col-lg-30 {
        width: 40%;
        float: left;
    }
}
/*--------------------------------------------- end Custom GRID --------------------------------------------*/
.up-arrow{
    top: 1px;
 		border: solid #f05b67;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
  	transition: all .3s ease;
}
.down-arrow{
  	top: -3px;
    border: solid #f05b67;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
		transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transition: all .3s ease;
}
.right-arrow {
    margin-left: 5px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
 		border: solid #f05b67;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    margin-right: 5px;
}
.left-arrow {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    border: solid #f05b67;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    margin-right: 5px;
}
/*--------------------------------------------- THANK-YOU PAGE --------------------------------------------*/
.thank-you-container {
    width: 70%;
    margin: 0 auto;
}
.thank-you-container .tnks-first-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.thank-you-container .tnks-first-row img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
}
.thank-you-container .fourth-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.thank-you-container .fourth-container .tnks-fourth-row {
    margin-bottom: 15px;
}
.thank-you-container .fourth-container .tnks-fourth-row a {
    font-size: 1.4375em;
    color: #000;
}
/*---- sovendus -----*/
#sovendus-container-1 {
		width: 70%;
    margin: auto;
    margin-bottom: 20px;
}
/*---- webloyalty -----*/
.WLS_gtmBannerWrapper {
    display: flex!important;
    justify-content: center!important;
    max-width: 100%!important;
    margin-bottom: 45px;
}
.WLS_gtmBannerWrapper div {
		text-align: center!important;
}
.WLS_gtmBannerWrapper div a {
		text-align: center!important;
}
#sovendus-container-1 > .sovendus-banner {
		width: 100%;
    border: none!important;
}
@media (max-width: 568px) {
  .thank-you-container {
      width: 100%;
      margin: 0 auto;
  }
  #sovendus-container-1 {
  		width: 100%;
  }
}
/* -------------------------------------------------------------------------------------------- */
/*---------------------------------------- page DMCA ------------------------------------------ */
/* -------------------------------------------------------------------------------------------- */
#dmca_form {
  display: flex;
  flex-direction: column;
  margin-top: 25px;
}
#dmca_form label {
  margin-bottom: 10px;
}
#dmca_form input,
#dmca_form textarea {
  width: 100%;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 5px 5px;
  margin-bottom: 25px;
}
#dmca_form button {
  margin: 0 auto;
}
/* -------------------------------------------------------------------------------------------- */
/* ------------------------------------------small-green-btn-------------------------------------------------- */
.small-green-btn {
    border: none;
    display: inline-block;
    font-family: "Avenir", arial, "arial-black", helvetica;
    font-weight: inherit;
    color: #fff !important;
    background-color: #4bb528;
    border-radius: 5px 5px;
    padding: 10px;
    min-width: 120px;
    text-align: center;
}
/* ------------------------------------------small-green-btn-------------------------------------------------- */
/*----------------------- about-us-page   -------------------------- */
.service-points {
  display: flex;
  align-items: center;
}

.service-points .fa-plus-circle {
  color: green;
  font-size: 20px;
  margin-right: 5px;
}
/*----------------------- about-us-page   -------------------------- */
/* -------------------------------------------------------------------------------------------- */
#trengoChatIframe {
  width: 100%;
  height: 450px;
  margin-top: 15px;
  box-shadow: 0 5px 40px rgba(0, 0, 0, 0.16);
}
#trengoChatButton {
  display: none;
  justify-content: center;
  margin: 25px;
}
/* -------------------------------------------------------------------------------------------- */
/* -------------------------------------- 404-page ------------------------------------------------------ */
.page-404 {
  display: flex;
  align-items: center;
}
.no-result-text {
  line-height: 2em;
}
@media (max-width: 568px ) {
  .page-404 {
    flex-direction: column;
  }
  .no-result-text {
    padding-top: 20px;
  }
}
/* -------------------------------------- 404-page ------------------------------------------------------ */
/* -------------------------------------------------------------------------------------------- */
@media (max-width: 568px) {
  .partnership-page-text {
    margin: 0;
  }
}
@media (min-width: 1200px ) {
  .partnership-page-text {
  padding: 0 100px;
  }
}
/* -------------------------------------------------------------------------------------------- */