@charset "UTF-8";

/*
	GLOBAL
* ----------------------------------------------------------------------------
*/

:root {
	--primary-color: 		rgba(0,45,116,1);
    --primary-color-85: 	rgba(0,45,116,0.85);
	--secondary-color: 		rgba(0,90,169,1);
    --secondary-color-75: 	rgba(0,90,169,0.75);
	--tertiary-color: 		rgba(91,138,190,1);
    --tertiary-color-75: 	rgba(91,138,190,0.75);
	--quaternary-color: 	rgba(0,188,240,1);
    --quaternary-color-75: 	rgba(0,188,240,0.75);
	--quinary-color: 		rgba(140,215,247,1);
    --quinary-color-75: 	rgba(140,215,247,0.75);
	--senary-color: 		rgba(255,255,255,1.00);
    --senary-color-75: 		rgba(255,255,255,0.75);
    --septenary-color: 		rgba(0,0,0,1);
    --septenary-color-75: 	rgba(0,0,0,0.75);
    --octonary-color: 		rgba(241,241,241,1);
    
    
    /*
	
	
	--nonary-color: 		rgba(236,215,196,1);
	--denary-color:         rgba(245,235,226,1);*/
    
    --error-red-1:          rgba(255,0,4,1.00);
    --error-red-2:          rgba(170,26,26,1);
}

body {
	position: 				relative;
	background-color: 		var(--primary-color);
	color: 					var(--senary-color);
/*
    webkit-touch-callout: 	none;
    -webkit-user-select: 	none;
     -khtml-user-select: 	none;
       -moz-user-select: 	none;
        -ms-user-select: 	none;
            user-select: 	none;*/
}
::selection {color: var(--primary-color); background: var(--secondary-color);}
::-moz-selection {color: var(--primary-color); background: var(--secondary-color);}

body, div, h1, h2, h3, h4, h5, h6, a, p, span, ul, ol, li, dl, dt, dd,
img, form, fieldset, input, button, textarea, blockquote, * {
	margin: 				0;
	padding: 				0;
	border: 				0;
	outline: 				0;
	-webkit-font-smoothing: antialiased;
    font-variant-ligatures: none;
	box-sizing: 			border-box;

	font-family: 			'Barlow';
	font-size: 				20px;
	line-height: 			1.4;
	font-weight: 			400;
}

h1 {
	font-size: 2.3em;
    line-height: 1.2em;
    margin-bottom: 0.2em;
    font-weight: 800;
}
h2 {
	font-size: 1.2em;
    line-height: 1.2em;
    margin-bottom: 0.3em;
    font-weight: 400;
}
h3 {
	font-size: 1.2em;
    line-height: 1.2em;
    margin-bottom: 0.4em;
    font-weight: 800;
}
h3 a {
    font-size: 1em;
    text-decoration: none;
}
@media only screen and (max-width: 768px) {
    h1 {
	    font-size: 2em;
    }
    h2 {
	    font-size: 1.1em;
    }
    h3 {
	    font-size: 1em;
    }
}
p {
	font-size: 1em;
    margin: 0.1rem 0;
}
a {
	font-weight: 800;
	color: rgba(255,255,255,1);
	text-decoration: underline;
    transition: all 0.2s ease-in-out;
}
a:hover  {
	color: rgba(255,255,255,0.7);
}
a:focus {
	outline: 0;
}
a:visited {
	color: rgba(255,255,255,1)
}

a.button,
button,
input[type="submit"] {
    display: inline-block;
    margin: 1.5rem auto;
    padding: 1rem 2rem;
    font-size: 1em;
    line-height: 0.5em;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--denary-color);
    background-color: var(--primary-color);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.6s ease-in-out;
    -webkit-appearance: none;
    -webkit-border-radius: 36px;
    border-radius: 36px;
}
a.button:hover,
button:hover,
input[type="submit"]:hover {
    background-color: var(--primary-color-85);
    transform: scale(1.1);
    filter: drop-shadow(0px 0px 6px rgba(0,90,169,1));
}
input[type="submit"]:disabled {
    background-color: rgba(162,95,68,0);
    border: solid 1px rgba(0,188,240,0.75);
    transform: scale(1);
    transition: all 1.2s ease;
    cursor: default;
}
    .button .btn_arrow {
        border: solid var(--senary-color);
        border-width: 0 0.12rem 0.12rem 0;
        display: inline-block;
        padding: 0.18rem;
        margin: 0.1rem 0.2rem 0.1rem 0.3rem;
        transition: margin 0.8s ease;
    }
        a.button:hover .btn_arrow,
        button:hover .btn_arrow,
        input[type="submit"]:hover .btn_arrow {
            margin: 0.1rem 0rem 0.1rem 0.5rem;
        }
        .button .btn_arrow.right {
            transform: rotate(-45deg);
        }
@media only screen and (max-width: 425px) {
    /*a.button,*/
    button,
    input[type="submit"] {
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 0.8em;
    }
}
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 0.8rem;
    color: var(--secondary-color);
    font-size: 0.8em;
    font-weight: 800;
    background-color: rgba(255,255,255,0.80);
    border: solid 4px var(--denary-color);
    transition: border, background 1.2s ease;
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
    border-radius: 0px;
}
select {
    color: rgba(0,0,0,0.6);
    background-image:
        linear-gradient(45deg, transparent 50%, gray 50%),
        linear-gradient(135deg, gray 50%, transparent 50%),
        linear-gradient(to right, #ccc, #ccc);
    background-position:
        calc(100% - 20px) calc(1.5em + 2px),
        calc(100% - 15px) calc(1.5em + 2px),
        calc(100% - 2.5em) 1.1em;
    background-size:
        5px 5px,
        5px 5px,
        1px 1.5em;
    background-repeat: no-repeat;
}
select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000;
}
textarea {resize: none;}
input[type="checkbox"] {position: absolute;}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
    color: rgba(0,4,43,1);
    border: solid 4px var(--denary-color);
    background-color: rgba(255,255,255,1.00);
}
::-webkit-input-placeholder {
    position: relative;
    border-radius: 0px;
    transition: all 0.5s ease;
    color: rgba(0,0,0,0.6);
}
:focus::-webkit-input-placeholder {
    border-radius: 0px;
    color: rgba(0,0,0,0);
}

.container {
    width: 100%;
    height: auto;
    padding-right: 1rem;
    padding-left: 1rem;
    margin-right: auto;
    margin-left: auto;
}
    .container.wide {
		max-width: 100%;
	}
	.container:after {
		content:"";
		display: table;
		clear: both;
	}
@media only screen and (max-width: 425px) {
    section .br {
        content: " ";
        display: inline-block;
    }
}
@media only screen and (min-width: 425px) {
    .container {
        padding-right: 2rem;
        padding-left: 2rem;
    }
}
@media only screen and (min-width: 992px) {
    .container {
        padding-right: 3rem;
        padding-left: 4rem;
    }
}
@media only screen and (min-width: 1200px) {
  .container {
		max-width: 1200px;
	}
}


/*
	HEADER
* ----------------------------------------------------------------------------
*/
header {
    position: relative;
    overflow: hidden;
    height: 34rem;
    background-image: url("../gfx/img.mobile.header.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
header.small {
    padding: 0;
    margin: 0;
    height: 6rem;
    background-image: none;
}
    header .logo {
        position: relative;
        padding-top: 1rem;
        width: 6rem;
    }
    header.small .logo {
        padding-top: 0.6rem;
    }
        header .logo svg {
            width: 100%;
            height: auto;
            fill-rule: evenodd;
            clip-rule: evenodd;
        }
        header.small .logo svg {
            height: 3.6rem;
        }
            /*.logo .svg_logo {fill: var(--primary-color);}
            .logo .svg_bg {fill: var(--senary-color);}*/
            .logo .svg_logo {fill: var(--senary-color);}
            .logo .svg_bg {fill: none;}
    header .content {
        position: absolute;
        /*bottom: calc(3rem + 110px);*/
        bottom: 6rem;
        color: var(--senary-color);
        border: solid 0px red;
    }
        header .content h3 span {
            font-size: 0.5em;
            background: red;
            margin: 0.5rem 0rem;
            padding: 0.25rem 0.5rem;
            border-radius: 6px;
            display: inline-block;
            
        }
        header .content h3 span:before {
            display: inline-block;
        }

@media only screen and (min-width: 768px) {
    header {
        background-image: url("../gfx/img.header.jpg");
        background-position: right center;
    }
        header .logo {
            padding-top: 2rem;
            width: 10rem;
        }
        header .logo:before {
            width: 60rem;
            height: 60rem;
            top: -55rem;
            left: -25rem;
        }
}

/*
	SECTION GLOBAL
* ----------------------------------------------------------------------------
*/
main {position: relative;}

section {
    overflow: hidden;
}
    section .container {
        padding-top: 1rem;
        padding-bottom: 2.5rem;
        text-align: center;
    }
    @media only screen and (min-width: 768px) {
        section .container {
            padding-top: 2rem;
            padding-bottom: 5rem;
        }
    }
        section.offer:before {
            content: "";
            position: absolute;
            top: -100px;
            left: 0;
            width: 100%;
            height: 102px;
            background-image: url("../gfx/img.wave.png");
            background-position: center top;
            background-size: cover;
        }
        section .offer {
            display: flex;
            flex-wrap: wrap;
            width: 96%;
            margin: 2rem auto;
        }
            section .offer .col {
                padding: 0.6rem;
                width: 50%;
                background: none;
            }
            @media only screen and (min-width: 992px) {
              section .offer .col {
                    width: 25%;
                }
            }
                section .offer svg {
                    height: 4.5rem;
                    padding: 0.3rem;
                }
                section .offer.fill svg {
                    stroke: none;
                    fill-rule: evenodd;
                    clip-rule: evenodd;
                    fill: var(--quinary-color);
                }
                section .offer.stroke svg {
                    fill: none;
                    stroke: var(--quinary-color);
                    stroke-width: 2;
                    stroke-miterlimit: 10; 
                }
                section .offer p {
                    font-size: 0.95em;
                    line-height: 1.2em;
                    letter-spacing: -0.03em;
                    font-weight: 800;
                    color: var(--quinary-color);
                }
                @media only screen and (max-width: 425px) {
                    section .offer p  {
                        font-size: 0.7em;
                        line-height: 1.1em;
                    }
                }
                    section .offer p small {font-size: 0.9em;}
                    section .offer p small:last-child {font-size: 0.7em;}


/*
	FORM
* ----------------------------------------------------------------------------
*/

section.form {
    overflow: visible;
    height: auto;
    background-image: url("../gfx/img.mobile.form.jpg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}
@media only screen and (min-width: 768px) {
    section.form {
        height: 54rem;
        background-image: url("../gfx/img.form.jpg");
    }
}
    section.form .container {
        position: relative;
    }
    @media only screen and (min-width: 768px) {
        section.form .container {
            padding-right: 0rem;
        }
    }
        section.form .content {
            position: relative;
            width: 100%;
            padding: 1.2rem 1rem;
            color: var(--senary-color);
            background-color: var(--secondary-color);
            border: solid 0.5rem var(--senary-color);
        }
        @media only screen and (min-width: 768px) {
            section.form .content {
                position: absolute;
                top: -3rem;
                right: 0;
                width: 50%;
            }
        }
        @media only screen and (min-width: 768px) {
            section.form .content {
                padding: 1.2rem 2rem;
            }
        }
        @media only screen and (min-width: 996px) {
            section.form .content {
                padding: 2.2rem 3rem;
            }
        }
            section.form h1 {
                font-size: 2em;
                line-height: 1.2em;
            }
            section.form h2 {
                font-size: 1.1em;
                margin-top: 0.6rem;
            }
            @media only screen and (max-width: 768px) {
                section.form h1 {
                    font-size: 1.4em;
                }
                section.form h2 {
                    font-size: 0.8em;
                }
            }
            section.form h2 span {
                    font-weight: 800;
                }
            section.form form {
                display: flex;
                flex-wrap: wrap;
                margin: 2rem auto 0 auto;
                width: 100%;
            }
                section.form .col,
                section.form .max {
                    padding: 0.4rem 0;
                    margin: 0.5%;
                    box-sizing: border-box;
                }
                    section.form .col {width: 50%;}
                    section.form .max {width: 100%;}
                        section label {
                            cursor: pointer;
                        }
                        section.form label.test {
                            display: block;
                            position: relative;
                            padding-left: 40px;
                            -webkit-user-select: none;
                            -moz-user-select: none;
                            -ms-user-select: none;
                            user-select: none;
                            text-align: left;
                        }

                            section.form label.test h4 {
                                font-size: 1.1em;
                                line-height: 1.2em;
                                font-weight: 800;
                            }
                            section.form label.test p {
                                font-size: 0.75em;
                                line-height: 1.1em;
                                font-weight: 400;
                            }
                            section.form label.test a {
                                font-size: 1em;
                                line-height: 1em;
                                padding-bottom: 1px;
                                color: var(--quinary-color);
                                text-decoration: none;
                                border-bottom: dotted 1px var(--quinary-color);
                            }

                            section.form label.test input {
                                position: absolute;
                                opacity: 0;
                                cursor: pointer;
                                height: 0;
                                width: 0;
                            }
                        section.form label.test .checkmark {
                            position: absolute;
                            top: 0;
                            left: 0;
                            height: 30px;
                            width: 30px;
                            background-color: rgba(255,255,255,0.85);
                            border: solid 1px rgba(255,255,255,1);
                            transition: all 0.6s ease-in-out;
                        }
                            section.form label.test:hover input ~ .checkmark {background-color: rgba(255,255,255,1);}
                            section.form label.test input:checked ~ .checkmark {background-color: rgba(255,255,255,1);}
                            section.form label.test .checkmark:after {
                                content: "";
                                position: absolute;
                                display: none;
                            }
                            section.form label.test input:checked ~ .checkmark:after {display: block;}
                            section.form label.test .checkmark:after {
                                left: 9px;
                                top: 5px;
                                width: 5px;
                                height: 10px;
                                border: solid var(--primary-color);
                                border-width: 0 4px 4px 0;
                                -webkit-transform: rotate(45deg);
                                -ms-transform: rotate(45deg);
                                transform: rotate(45deg);
                            }
                        section.form .terms {
                            text-align: left;
                            display: inline-block;
                            margin-left: 30px;
                            font-size: 0.5em;
                            line-height: 1.1em;
                        }
                        section.form .terms a {
                            font-size: 1em;
                        }


                section.form .required {
                    text-align: right;
                    font-size: 0.5em;
                }
                section.form input[type="submit"] {
                    color: var(--secondary-color);
                    background-color: var(--senary-color);
                }
                section.form input[type="submit"]:hover {
                    color: var(--primary-color);
                    background-color: var(--senary-color);
                }
                section.form input[type="submit"]:disabled {
                    background-color: rgba(162,95,68,0);
                    border: solid 1px rgba(0,188,240,0.4);
                    color: rgba(0,188,240,0.4);
                }
            section.form .contact_error input,
            section.form #contact_terms.contact_error div {
                border: solid 4px var(--error-red-2);
                background: var(--error-red-1);
            }
            section.form #contact_terms div {
                transition: border, background 1.2s ease;
                padding: 0.5rem;
            }
             section.form .contact_error p {
                /*display: none;*/
                font-size: 0.6em;
                font-weight: 800;
                color: var(--error-red-2);
                margin-top: 0.4em;
                text-transform: uppercase;
            }
            section.form #contact_response p {
                text-align: center;
                font-size: 1em;
                font-weight: 800;
                text-transform: uppercase;
                color: var(--error-red-2);
            }
            section.form #contact_response_sent p {
                margin: 4rem 0;
                text-transform: uppercase;
            }

            section.form .rental {
                border-top: dotted 2px #fff;
                padding-top: 1rem;
            }
                section.form .rental h1 {
                    font-size: 1.4em;
                    line-height: 1.2em;
                }
                section.form .rental h2 {
                    font-size: 0.9em;
                    line-height: 1.1em;
                }
                section.form .rental a {
                    font-size: 0.9em;
                    line-height: 0.5em;
                    padding: 0.8rem 1.4rem;
                }


/*
	MODAL - TERMS
* ----------------------------------------------------------------------------
*/
section.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 3rem;
    padding-bottom: 3rem;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.85);
}

    section.modal .container {
        position: relative;
        background-color: var(--septenary-color);
        margin: auto;
        padding: 0;
        border: 4px solid var(--primary-color);
        box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
        animation-name: fadeIn;
        animation-duration: 0.6s;
    }
        @-webkit-keyframes fadeIn {
            from {opacity: 0} 
            to {opacity: 1}
        }
    section.modal .close {
        color: rgba(255,255,255,0.25);
        float: right;
        font-size: 2em;
        line-height: 1em;
        font-weight: 800;
        transition: color 1.2s ease;
    }
    section.modal .close:hover,
    section.modal .close:focus {
        color: rgba(255,255,255,1);
        text-decoration: none;
        cursor: pointer;
    }
        section.modal .header {
            padding: 0.7rem 0.7rem;
            background-color: var(--primary-color);
            color: var(--septenary-color);
        }
            section.modal h1 {
                font-size: 1.1em;
                line-height: 1.1em;
                margin: 0.5rem auto;
                color: var(--quinary-color);
            }
        section.modal .body {
            padding: 1rem 1rem;
            background: var(--secondary-color);
        }
            section.modal h2 {
                text-align: left;
                font-sie: 1.2em;
                line-height: 1.4em;
                font-weight: 800;
                margin: 16px auto;
            }
            section.modal p,
            section.modal li {
                text-align: left;
                margin-bottom: 0.4rem;
                font-size: 0.8em;
            }
                section.modal span {
                    font-size: 1.1em;
                    font-weight: 800;
                }
            section.modal ul {
                margin-left: 1rem;
            }
        @media only screen and (min-width: 425px) {
            .container {
                padding-right: 2rem;
                padding-left: 2rem;
            }
        }
        @media only screen and (min-width: 992px) {
            section.modal .header {
                padding: 0.7rem 1.4rem;
            }
            section.modal .body {
                padding: 2rem 4rem;
            }
        }

/*
	FEATURES
* ----------------------------------------------------------------------------
*/

section.features {
    overflow: visible;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    height: 80vh;
}
    @media only screen and (min-width: 768px) {
        section.features {
            height: 70vh;
        }
    }
    section.features.pool {
        background-image: url("../gfx/img.mobile.pool.jpg");
    }
    section.features.apartament {
        background-image: url("../gfx/img.mobile.apartament.jpg");
    }
    @media only screen and (min-width: 768px) {
        section.features.pool {
            background-image: url("../gfx/img.pool.jpg");
        }
        section.features.apartament {
            background-image: url("../gfx/img.apartament.jpg");
        }
    }
    section.features .container {
        height: 100%;
        display: flex;
        align-items: flex-end;
    }
    @media only screen and (min-width: 768px) {
        section.features .container {
            align-items: center;
        }
    }
        section.features .container.left {
            justify-content: flex-start;
        }
        section.features .container.right {
            justify-content: flex-end;
        }

            section.features .content {
                padding: 1rem 2rem;
                width: 100%;
                text-align: left;
                color: var(--octonary-color);
                backdrop-filter: blur(0.25rem);
                background-color: var(--primary-color-85);
                
            }
            @media only screen and (min-width: 768px) {
                section.features .content {
                    padding: 1.2rem 2rem;
                    width: 50%;
                    border: solid 0.15rem var(--senary-color-75);
                }
            }
            @media only screen and (min-width: 996px) {
                section.features .content {
                    padding: 2.2rem 3rem;
                }
            }
                    section.features h1 {
                        font-size: 1.4em;
                    }
                    section.features h2 {
                        font-size: 0.8em;
                    }
                    section.features a.button {
                        color: var(--secondary-color);
                        background-color: rgba(245,235,226,0.9);
                    }
                    section.features a.button:hover {
                        background-color: rgba(245,235,226,1);
                    }
                    section.features .btn_arrow {
                            border-color: var(--secondary-color);
                    }
                    @media only screen and (min-width: 768px) {
                        section.features h1 {
                            font-size: 1.9em;
                        }
                        section.features h2 {
                            font-size: 1.1em;
                        }
                        section.features a.button {
                            color: var(--secondary-color);
                            background-color: rgba(245,235,226,0.9);
                        }
                    }

/*
	INFO BOX
* ----------------------------------------------------------------------------
*/

section.info {}
    section.info.apartaments {
        background-image: linear-gradient(
            -45deg,
            var(--primary-color) 1%,
            var(--secondary-color),
            var(--primary-color)
        );
        background-size: 400% 400%;
	    animation: gradient 16s ease infinite;
    }
    @keyframes gradient {
        0% {
            background-position: 0% 40%;
        }
        50% {
            background-position: 100% 60%;
        }
        100% {
            background-position: 0% 40%;
        }
    }
    section.info.middle {
        padding: 1rem 0;
        color: var(--primary-color);
        background-color: var(--quinary-color);
    }
        section.info .container {
            padding-top: 2.5rem;
            padding-bottom: 2.5rem;
            width: 100%;
            text-align: center;
        }
        @media only screen and (min-width: 768px) {
            section.info .container {
                padding-top: 4rem;
                padding-bottom: 4rem;
                width: 65%;
                text-align: center;
            }
        }
                section.info picture {
                    display: block;
                    margin-top: 2rem;
                    margin-bottom: 2rem;
                }
                    section.info picture img {
                        width: 100%;
                        max-width: 560px;
                    }

                    section.info a.button {
                        color: var(--secondary-color);
                        background-color: rgba(245,235,226,0.9);
                    }
                    section.info a.button:hover {
                        background-color: rgba(245,235,226,1);
                    }
                    section.info .btn_arrow {
                            border-color: var(--secondary-color);
                    }

/*
	VIDEO
* ----------------------------------------------------------------------------
*/

.video {
    margin-top: 3rem;
    width: 100%;
    height: auto;
    cursor: pointer;
}

    .video .box {
        overflow: hidden;
        padding-bottom: 56.25%;
        position: relative;
        height: 0;
        border: solid 0.15rem var(--senary-color);
        background-color: var(--senary-color);
        transition-duration: 1s;
    }
    .video .box.cover {
        background-image: url("../gfx/img.cover.jpg");
        background-repeat: no-repeat;
        background-size: cover;
    }
        .video iframe {
            left: 0;
            top: 0;
            height: 100%;
            width: 100%;
            position: absolute;
            transition-duration: 1s;
            
        }
        .video .box.cover iframe {
            background: red;
            opacity: 0;
            pointer-events: none;
        }



/*
	FOOTER
* ----------------------------------------------------------------------------
*/

footer {
    position: relative;
    overflow: visible;
    color: var(--septenary-color-75);
    background: var(--octonary-color);
}
footer:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 102px;
    background-image: url("../gfx/img.wave.png");
    background-position: center top;
    background-size: cover;
    transform: rotate(180deg);
}
    footer .container {
        padding: 6rem 0 2rem 0;
        text-align: center;
    }
        footer img {
            margin: 1rem auto 0.2rem auto;
            width: 280px;
            height: auto;
        }
            footer h1 {
                font-size: 0.8em;
            }
            footer p {
                margin-top: 0.2rem;
                font-size: 0.5em;
            }


/*
	COOKIES
* ----------------------------------------------------------------------------
*/
div.cookies {
    padding: 0.2rem 1.2rem;
    background-color: rgba(255,255,255,1);
    border-bottom: solid 1px rgba(38,45,55,0.1);
    color: var(--secondary-color);
    font-size: 0.55em;
    line-height: 0.9em;
    text-align: center;
    display: none;
}
    div.cookies button {
        padding: 0.3rem 0.6rem;
        margin: 0.3rem auto;
        margin-left: 0.3rem;
        font-size: 0.7em;
        line-height: 1.1em;
        color: var(--senary-color);
    }
    div.cookies button:hover {
        transform: none;
        filter: none;
    }
@media only screen and (max-width: 425px) {
    div.cookies {
        padding: 0.6rem 1.2rem;
        font-size: 0.65em;
        line-height: 1em;
    }
        div.cookies button {
            display: block;
            width: 30%;
            margin: 0.6rem auto;
        }
}
