@charset "utf-8";

/* 2. General Settings */

* {
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
	text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

html, body {
	height: 100%;
}

body {
	font-size: 14px;
	font-weight: 400;
	background: #fff;
	color: #2b2e35;
	display: flex;
	flex-direction: column;
	font-family: sans-serif;
}

.preload-transition * {
	webkit-transition: none !important;
	-moz-transition: none !important;
	-ms-transition: none !important;
	-o-transition: none !important;
	transition: none !important;
}

.sticky-content {
	flex: 1 0 auto;
}

.fonts-loaded {
	font-family: 'Montserrat', sans-serif;
}

div {
	display: block;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

ul {
	list-style: none;
	margin-bottom: 0px;
}

p {
	font-size: 14px;
	line-height: 2.15;
	font-weight: 500;
	color: #a2b0bf;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
	text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
	hyphens: auto;
	-webkit-hyphens: auto; 
	-moz-hyphens: auto; 
	-ms-hyphens: auto;
}

.fonts-loaded p {
	font-family: 'Montserrat', sans-serif;
}

p a {
	display: inline;
	position: relative;
	color: inherit;
	border: none;
}

p:last-of-type {
	margin-bottom: 0;
}

a {
	-webkit-transition: color 400ms ease;
	-moz-transition: color 400ms ease;
	-ms-transition: color 400ms ease;
	-o-transition: color 400ms ease;
	transition: color 400ms ease;
}

a,
a:hover,
a:visited,
a:active,
a:link {
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
	text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

p a:active {
	position: relative;
	color: #3f8fa6;
}

p a:hover {
	color: #FFFFFF;
	background: none;
}

p a:hover::after {
	opacity: 0.2;
}

::selection {
	background: #4fb4d0;
	color: #ffffff;
}

p::selection {}

h1 {
	font-size: 48px;
	color: #2b2e35;
}

h2 {
	font-size: 36px;
	color: #2b2e35;
}

h3 {
	font-size: 24px;
	color: #fff;
}

h4 {
	font-size: 24px;
	color: #2b2e35;
	letter-spacing: -10;
	font-weight: 400;
}

h5 {
	font-size: 14px;
	color: #2b2e35;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
	text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
	line-height: 1.2;
}

.fonts-loaded h1,
.fonts-loaded h2,
.fonts-loaded h3,
.fonts-loaded h4,
.fonts-loaded h5,
.fonts-loaded h6 {
	font-family: 'Montserrat', sans-serif;
}

img {
	max-width: 100%;
}

section {
	display: block;
	position: relative;
	box-sizing: border-box;
}

.mobile-menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 101;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
	display: none;
}

.mobile-menu-overlay.active {
	opacity: 1;
	visibility: visible;
}

#smoothScrollToTopButton {
	display: none;
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 99;
	font-size: 18px;
	border: none;
	outline: none;
	background-color: rgba(79,180,208,0.8);
	color: white;
	cursor: pointer;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	line-height: 60px;
	-webkit-animation: fadeInFromNone 1s ease-in;
    -moz-animation: fadeInFromNone 1s ease-in;
	-ms-animation: fadeInFromNone 1s ease-in;
    -o-animation: fadeInFromNone 1s ease-in;
    animation: fadeInFromNone 1s ease-in;
	-webkit-transition: all 400ms ease-in-out;
	-moz-transition: all 400ms ease-in-out;
	-ms-transition: all 400ms ease-in-out;
	-o-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}

#smoothScrollToTopButton:hover {
	background-color: rgba(89,89,89,0.8);
	box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 7px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -1px rgba(0, 0, 0, 0.2);
}

#smoothScrollToTopButton i {
	font-size: 44px;
	line-height: 53px;
	width: inherit;
	display: inline-block;
	text-align: center;
	color: #fff;
}

@-webkit-keyframes fadeInFromNone {
    0% {
        display: none;
        opacity: 0;
    }

    1% {
        display: block;
        opacity: 0;
    }

    100% {
        display: block;
        opacity: 1;
    }
}

@-moz-keyframes fadeInFromNone {
    0% {
        display: none;
        opacity: 0;
    }

    1% {
        display: block;
        opacity: 0;
    }

    100% {
        display: block;
        opacity: 1;
    }
}

@-ms-keyframes fadeInFromNone {
    0% {
        display: none;
        opacity: 0;
    }

    1% {
        display: block;
        opacity: 0;
    }

    100% {
        display: block;
        opacity: 1;
    }
}

@-o-keyframes fadeInFromNone {
    0% {
        display: none;
        opacity: 0;
    }

    1% {
        display: block;
        opacity: 0;
    }

    100% {
        display: block;
        opacity: 1;
    }
}

@keyframes fadeInFromNone {
    0% {
        display: none;
        opacity: 0;
    }

    1% {
        display: block;
        opacity: 0;
    }

    100% {
        display: block;
        opacity: 1;
    }
}

/* 3. Header */

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #ffffff;
	z-index: 100;
	-webkit-transition: all 600ms ease;
	-moz-transition: all 600ms ease;
	-ms-transition: all 600ms ease;
	-o-transition: all 600ms ease;
	transition: all 600ms ease;
}

.header.scrolled {
	top: -55px;
	box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.085);
}

.header-bar {
	width: 100%;
	height: 55px;
	background: #595959;
	padding-left: 64px;
	padding-right: 62px;
}

.header-bar-elements ul li:not(:last-of-type) {
	margin-right: 49px;
}

.header-bar-elements ul li>div {
	width: 23px;
	height: 23px;
}

.header-bar-elements ul li>div>img {
	max-height: 100%;
	max-width: 100%;
	vertical-align: unset;
}

.header-bar-elements ul li span {
	font-size: 14px;
	font-weight: 500;
	color: #ffffff;
	margin-left: 13px;
}

.header-mailto {
	color: #fff;
}

.header-mailto:hover {
	color: #b3b3b3;
}

.social-span {
	font-size: 14px;
	font-weight: 500;
	color: #ffffff;
	margin-left: 13px;
	margin-right: 20px;
}

.social ul li {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #4fb4d0;
	text-align: center;
}

.social ul li:not(:last-of-type) {
	margin-right: 13px;
}

.social ul li a {
	display: block;
	height: 100%;
	line-height: 32px;
}

.social p {
	color: #a6a6a6;
	font-size: 14px;
	font-weight: 600;
}

.fonts-loaded .social p {
	font-family: "Poppins", sans-serif;
}

.social ul li a i {
	font-size: 14px;
	color: #ffffff;
}

.social ul li:hover {
	-webkit-transition: all 100ms ease-in-out;
	-moz-transition: all 100ms ease-in-out;
	-ms-transition: all 100ms ease-in-out;
	-o-transition: all 100ms ease-in-out;
	transition: all 100ms ease-in-out;
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}

.social-facebook {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #4fb4d0;
	text-align: center;	
}

.social-facebook a {
	display: block;
	height: 100%;
	line-height: 32px;
}

.social-facebook a i {
	font-size: 14px;
	color: #ffffff;
}

.social-facebook:hover {
	-webkit-transition: all 100ms ease-in-out;
	-moz-transition: all 100ms ease-in-out;
	-ms-transition: all 100ms ease-in-out;
	-o-transition: all 100ms ease-in-out;
	transition: all 100ms ease-in-out;
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}

.header-content {
	width: 100%;
	height: 61px;
	background: #ffffff;
	padding-left: 40px;
}

.header-logo a {
	font-size: 20px;
	color: #6c7079;
	font-weight: 600;
}

.fonts-loaded .header-logo a {
	font-family: 'Titillium Web', sans-serif;
}

.header-logo a span {
	color: rgba(246, 36, 36, 1);
}

.main-nav {
	height: 100%;
	margin-left: 40px;
}

.main-nav ul {
	height: 100%;
}

.main-nav ul li {
	position: relative;
	height: 100%;
	-webkit-transition: background 400ms ease;
	-moz-transition: background 400ms ease;
	-ms-transition: background 400ms ease;
	-o-transition: background 400ms ease;
	transition: background 400ms ease;
}

.main-nav ul li:not(:last-of-type) {
	margin-right: 26px;
}

.main-nav ul li.active,
.main-nav ul li:hover {
	background: #4fb4d0;
}

.main-nav ul li a {
	display: block;
	height: 100%;
	line-height: 61px;
	padding-left: 13px;
	padding-right: 13px;
	font-size: 16px;
	font-weight: 500;
	color: #2b2e35;
}

.main-nav ul li.active a {
	color: #ffffff;
}

.main-nav ul li a:hover {
	color: #ffffff;
}

.mobile-menu-bars {
	display: none;
	cursor: pointer;
}

.mobile-menu-bars i {
	font-size: 24px;
	color: #2b2e35;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.mobile-menu-bars:hover i {
	color: #4fb4d0;
}


/* 4. Menu */

.mobile-menu {
	position: fixed;
	top: 0;
	right: -370px;
	width: 370px;
	height: 100vh;
	z-index: 102;
	background: #ffffff;
	padding-right: 30px;
	padding-top: 100px;
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
}

.mobile-menu.active {
	right: 0;
}

.mobile-menu-close {
	position: absolute;
	top: 30px;
	right: 25px;
	padding: 5px;
	cursor: pointer;
}

.mobile-menu-close i {
	font-size: 20px;
	color: #2b2e35;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.mobile-menu-close:hover i {
	color: #4fb4d0;
}

.mobile-menu-inner {
	display: inline-block;
}

.mobile-menu-nav {
	margin-top: 0px;
}

.mobile-menu-nav ul li:not(:last-of-type) {
	margin-bottom: 2px;
}

.mobile-menu-nav ul li a {
	font-size: 20px;
	color: #2b2e35;
	font-weight: 400;
}

.fonts-loaded .mobile-menu-nav ul li a {
	font-family: "Poppins", sans-serif;
}

.mobile-menu-nav ul li a:hover {
	color: #4fb4d0;
}

.mobile-menu-nav ul li.active a {
	color: #4fb4d0;
}


/* 5. Banner Area */

.banner-area {
	height: 456px;
}

.banner-area-content {
	padding-top: 241px;
}

.banner-area-title h3 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 10px;
	color: #d9d9d9;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
}

.fonts-loaded .banner-area-title h3 {
	font-family: "Poppins", sans-serif;
}

.banner-area-title h4 {
	font-size: 48px;
	font-weight: 600;
	color: #fff;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
}

.fonts-loaded .banner-area-title h4 {
	font-family: "Poppins", sans-serif;
}

/* 6. About Us Area */

.about-us-area {
	background: #ffffff;
	padding-top: 90px;
	padding-bottom: 90px;
}

.about-us-area-section-title h1 {
	color: #222222;
	font-size: 34px;
}

.fonts-loaded .about-us-area-section-title h1 {
	font-family: "Poppins", sans-serif;
}

.about-us-area-text p {
	margin-top: 18px;
	text-align: justify;
	line-height: 24px;
	font-size: 15px;
	font-weight: 300;
}

.about-us-area-image {
	position: relative;
	background: #eee;
	margin-top: 40px;
	padding-left: 30px;
	padding-right: 30px;
	padding-bottom: 30px;
}

.about-us-area-image img {
	margin-top: -30px;
}

.about-us-area-text > ul {
	list-style-type: disc;
	padding-left: 20px;
	padding-top: 15px;
}

.about-us-area-text > ul > li {
	color: #a2b0bf;
	text-align: justify;
	font-weight: 300;
	padding-left: 10px;
	font-size: 15px;
	hyphens: auto; 
	-webkit-hyphens: auto; 
	-moz-hyphens: auto; 
	-ms-hyphens: auto;
}

.about-us-area-text ul li:not(:last-of-type) {
	margin-bottom: 6px;
}

.about-us-area-text-list-title {
	font-weight: 600 !important;
	font-size: 16px !important;
	color: #6c6c6c;
}

/* 7. Services */

.services-area {
	padding-top: 40px;
	padding-bottom: 30px;
	background: #e0e0e6;
}

.services-area-row {
	margin-top: 25px;
	display: flex;
}

.services-area-row .service-item {
	display: flex;
}

.service-element {
	background: #ffffff;
	padding-top: 20px;
	padding-left: 30px;
	padding-right: 30px;
	padding-bottom: 29px;
	margin-bottom: 28px;
	text-align: justify;
	box-shadow: 0px 7px 17px rgba(0, 0, 0, 0.23);
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
}

.service-element::after {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	border: solid 2px #4fb4d0;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
}

.service-element:hover::after {
	visibility: visible;
	opacity: 1;
}

.service-element:hover {
	box-shadow: 0px 14px 35px rgba(0, 0, 0, 0.23);
}

.services-area-section-title h2 {
	font-size: 34px;
	font-weight: 500;
	color: #595959;
	margin-bottom: 15px;
	text-shadow: 1px 1px 4px rgba(255, 255, 255, 0.9);
}

.fonts-loaded .services-area-section-title h2 {
	font-family: "Poppins", sans-serif;
}

.services-area-section-title p {
	font-size: 14px;
	line-height: 24px;
	color: #fff;
	margin-bottom: 15px;
	text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.fonts-loaded .services-area-section-title p {
	font-family: "Poppins", sans-serif;
}

.service-element .service-element-title h3 {
	color: #404040;
	font-size: 16px;
	font-weight: 500;
	text-align: left;
}

.fonts-loaded .service-element .service-element-title h3 {
	font-family: "Poppins", sans-serif;
}

.service-element-icon {
	width: 38px;
	height: 60px;
	min-width: 38px;
	min-height: 60px;
}

.service-element-icon img {
	max-height: 100%;
}

.service-element-title {
	padding-left: 19px;
	padding-top: 6px;
}

.service-element-text {
	margin-top: 9px;
}

.service-element-text p {
	line-height: 24px;
}



/* 8. Agents */

.insurance-agents-area {
	background: #ffffff;
	padding-top: 40px;
	padding-bottom: 50px;
}

.insurance-agents-area-row {
	margin-top: 30px;
}

.insurance-agent-col-first {
	margin-bottom: 0px;
}

.insurance-agent-col-second {
	margin-bottom: 0px;
}

.insurance-agents-area-section-title h2 {
	color: #222222;
	font-size: 34px;
}

.fonts-loaded .insurance-agents-area-section-title h2 {
	font-family: "Poppins", sans-serif;
}

.insurance-agent {
	background: #e8e8ed;
	box-shadow: 0px 7px 17px rgba(0, 0, 0, 0.23);
	-webkit-transition: all 400ms ease-in-out;
	-moz-transition: all 400ms ease-in-out;
	-ms-transition: all 400ms ease-in-out;
	-o-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
}

.fonts-loaded .insurance-agent {
	font-family: "Poppins", sans-serif;
}

.insurance-agent::after {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	border: solid 2px #4fb4d0;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 400ms ease-in-out;
	-moz-transition: all 400ms ease-in-out;
	-ms-transition: all 400ms ease-in-out;
	-o-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
}

.insurance-agent:hover {
	box-shadow: 0px 14px 35px rgba(0, 0, 0, 0.23);
}

.insurance-agent:hover::after {
	visibility: visible;
	opacity: 1;
}

.insurance-agent-content {
	padding-left: 40px;
	padding-top: 36px;
	padding-right: 40px;
	padding-bottom: 22px;
}

.insurance-agent-name {
	font-size: 20px;
	font-weight: 600;
	color: #2b2e35;
}

.insurance-agent-title {
	font-size: 14px;
	font-weight: 500;
	color: #4fb4d0;
	margin-top: 0px;
}

.insurance-agent-info-first {
	margin-top: 25px;
	text-align: justify;
	font-size: 14px;
	font-weight: 300;
	color: #818c98;
}

.fonts-loaded .insurance-agent-info-first {
	font-family: "Poppins", sans-serif;
}

.insurance-agent-info-first p {
	color: #818c98;
	line-height: 24px;
}

.insurance-agent-info-second {
	margin-top: 55px;
	text-align: justify;
	font-size: 14px;
	font-weight: 300;
}

.fonts-loaded .insurance-agent-info-second {
	font-family: "Poppins", sans-serif;
}

.insurance-agent-info-second p {
	color: #818c98;
	line-height: 24px;
}

.insurance-agent-list {
	margin-top: 25px;
}

.insurance-agent-list ul li:not(:last-of-type) {
	margin-bottom: 9px;
}

.insurance-agent-list ul li div {
	width: 20px;
	height: 20px;
	min-width: 20px;
	min-height: 20px;
}

.insurance-agent-list ul li div img {
	max-height: 100%;
}

.insurance-agent-list ul li span {
	padding-top: 4px;
	font-size: 14px;
	font-weight: 600;
	color: #808080;
	padding-left: 15px;
}


/* 9. Footer */

.footer {
	flex-shrink: 0;
}

.footer-content {
	padding-top: 40px;
	padding-bottom: 40px;
	background: #494d4d;
}

.footer-company-logo h5 a {
	font-size: 18px;
	font-weight: 500;
	color: #f2f2f2;
	line-height: 1.2;
}

.fonts-loaded .footer-company-logo h5 a {
	font-family: 'Titillium Web', sans-serif;
}

.footer-company-logo h5 a span {
	color: rgba(246, 36, 36, 1);
}

.footer-text {
	margin-top: 30px;
}

.footer-text p {
	color: #a6a6a6;
	text-align: justify;
	font-size: 14px;
}

.footer-title h5 {
	font-size: 18px;
	font-weight: 500;
	color: #f2f2f2;
	line-height: 1.2;
	text-transform: uppercase;
}

.fonts-loaded .footer-title h5 {
	font-family: 'Titillium Web', sans-serif;
}

.footer-info-content {
	margin-top: 30px;
}

.footer-info-content ul li:not(:last-of-type) {
	margin-bottom: 20px;
}

.footer-info-content ul li div {
	width: 20px;
	height: 20px;
	min-width: 20px;
	min-height: 20px;
}

.footer-info-content ul li div img {
	max-height: 100%;
}

.footer-info-content ul li span {
	padding-top: 4px;
	font-size: 14px;
	font-weight: 600;
	color: #a6a6a6;
	padding-left: 15px;
}

.footer-links ul {
	margin-top: 30px;
}

.footer-links ul li:not(:last-of-type) {
	margin-bottom: 17px;
}

.footer-links ul li a {
	font-size: 14px;
	font-weight: 600;
	color: #a6a6a6;
}

.footer-links ul li a:hover {
	color: #4fb4d0;
}

.footer-bar {
	background: #313333;
}

.footer-bar-content {
	height: 50px;
}

.footer-mailto {
	color: #a6a6a6;
}

.footer-mailto:hover {
	color: #d9d9d9;
}

.copyright-content {
	font-size: 14px;
	font-weight: 400;
	color: #cccccc;
	text-align: center;
}

.fonts-loaded .copyright-content {
	font-family: "Poppins", sans-serif;
}

.copyright-content a {
	color: #4fb4d0;
}

.copyright-content a:hover {
	color: #3a8499;
}

.footer-collapsible-button {
	display: none;	
	background-color: #494d4d;
	color: #f2f2f2;
	cursor: pointer;
	padding: 12px 0px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none !important;
	font-size: 18px;
	text-transform: uppercase;
}

.fonts-loaded .footer-collapsible-button {
	font-family: 'Titillium Web', sans-serif;
}

.footer-collapsible-button:after {
	content: '\002B';
	color: #f2f2f2;
	font-weight: 600;
	float: right;
	margin-left: 5px;
}

.footer-collapsible-active:after {
	content: "\2212";
}

/* 10. Cookies */

#cookieinfo * {
	margin: 0px;
	padding: 0px;
}

#cookieinfo {
	position: fixed;
	font-size: 12px;
	left: 0px;
	bottom: 0px;
	right: 0px;
	background-color: rgba(50, 51, 52, 0.9);
	padding: 20px;
	box-shadow: 0px -1px 3px rgba(0, 0, 0, 0.5);
	z-index: 1000;
}

#cookieinfo h6 {
	font-size: 16px;
	color: #f2f2f2;
	text-shadow: 0px 1px 1px rgba(0, 0, 0, 1);
	margin-bottom: 7px;
}

.fonts-loaded #cookieinfo h6 {
	font-family: "Poppins", sans-serif;
}

#cookieinfo p {
	font-size: 12px;
	color: #bec3cc;
	line-height: 1.5em;
}

.fonts-loaded #cookieinfo p {
	font-family: "Poppins", sans-serif;
}

#cookieinfo .close-cookie-alert {
	display: block;
	position: absolute;
	right: 10px;
	top: 10px;
	width: 22px;
	height: 22px;
	border-radius: 11px;
	line-height: 22px;
	font-size: 12px;
	color: #ffffff;
	text-align: center;
	text-decoration: none;
	background-color: rgba(79, 180, 208, 0.9);
}

#cookieinfo .close-cookie-alert:hover {
	background-color: rgba(68, 154, 179, 0.8);
}

#cookieinfo .cookie-alert-policy {
	border-style: none;
	color: #4fb4d0;
}

#cookieinfo .cookie-alert-policy:hover {
	background: none;
	color: #3f8fa6;
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
}