/*
Theme Name:         Briefing Projects
Description:        Briefing Projects Theme
Version:            1.0
Author:             wevolved

Text Domain:        briefing
*/

/* Fonts */

@font-face {
	font-family: "FontAwesome";
	src: url("fonts/FontAwesome.otf");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "Familjen";
	src: url("fonts/FamiljenGrotesk/FamiljenGrotesk-Bold.ttf") format('truetype');
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: "Acumin";
	src: url("fonts/AcuminPro/Acumin-BdPro.otf") format('otf'),
		 url('fonts/AcuminPro/Acumin-BdPro.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: "Acumin";
	src: url("fonts/AcuminPro/Acumin-RPro.otf") format('otf'),
		 url('fonts/AcuminPro/Acumin-RPro.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
}

/* Estrutura */

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0px;
	padding: 0px;
	overflow-x: hidden;
}

img {
	max-width: 100%;
}

h1{
	font-family: 'Familjen';
	font-weight: 700;
	font-size: 80px;
	line-height: 80px;
	color: var(--black);
	margin: 0px;
}

h2{
	font-family: 'Familjen';
	font-weight: 700;
	font-size: 80px;
	line-height: 80px;
	color: var(--black);
	margin: 0px;
}

p, p strong{
	font-family: 'Acumin';
	font-weight: 400;
	font-size: 32px;
	line-height: 38px;
	color: var(--black);
}

p strong{
	font-weight: 700;
}

label{
	font-family: 'Familjen';
	font-weight: 700;
	font-size: 40px;
	line-height: 40px;
	color: var(--black);
}

input, input::placeholder{
	border: 0px;
	font-family: 'Acumin';
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
	color: var(--grey);
	width: 100%;
}

input:focus,
input:focus-visible{
	outline: 0px;
}

textarea:focus{
	outline: none;
}

textarea{
    width: 100%;
    height: 50px;
    border: 0px;
    resize: none;
    font-family: 'Acumin';
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
	color: var(--grey);
	margin-bottom: -30px;
}

textarea::placeholder{
	font-family: 'Acumin';
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
	color: var(--grey);
}

:root{
	--black: #141414;
	--white: #FFFFFF;
	--grey: #C0C0C0;
}

div.wpb_content_element,
p{
	margin-bottom: 0px;
}

/* Header */

.wrapper-header {
    width: calc(100vw - 200px);
    display: flex;
    justify-content: space-between;
    position: fixed;
    left: 100px;
    top: 50px;
    z-index: 1;
}

.wrapper-header p,
.wrapper-header p strong{
	font-size: 16px;
	line-height: 19px;
}

ul.idiomas-menu{
	padding: 0px;
	display: flex;
	gap: 12px;
}

ul.idiomas-menu li::after{
	content: '|';
	position: absolute;
	top: 50%;
	right: -8px;
	transform: translateY(-51%);
}

ul.idiomas-menu li:last-child::after{
	display: none;
}


ul.idiomas-menu li,
ul.idiomas-menu li a{
	list-style: none;
	font-family: 'Acumin';
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
	color: var(--black);
	position: relative;
}

/* Briefing Projects */

.section-briefing > .vc_col-sm-12 > div > div{
	display: flex;
	height: 100dvh;
	width: fit-content;
	transition: 1s;
	position: relative;
	left: 0px;
}

.section-briefing > .vc_col-sm-12 .vc_inner{
	width: 100vw;
	height: 100%;
}

.section-briefing > .vc_col-sm-12 .vc_inner > div,
.section-briefing > .vc_col-sm-12 .vc_inner > div > div,
.section-briefing > .vc_col-sm-12 .vc_inner > div > div > div{
	height: 100%;
}

.section-briefing .vc_inner .vc_single_image-wrapper{
	width: 100vw;
	height: 40vh;
}

.section-briefing .vc_inner .vc_single_image-wrapper img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.section-briefing .vc_inner .wpb_single_image{
    position: absolute;
    bottom: 0px;
    left: 0px;
}

.section-briefing h1{
	padding-top: 200px;
	padding-left: 100px;
	width: 675px;
}

.section-briefing p.vc_custom_heading{
	padding-top: 20px;
	padding-left: 100px;
}

.section-briefing .wpb_text_column{
	padding-left: 100px;
	padding-top: 32px;
}

.section-briefing .wpb_text_column p{
	margin-bottom: 5px;
}

.section-briefing .wpb_text_column p,
.section-briefing .wpb_text_column p strong{
	font-size: 16px;
	line-height: 19px;
	color: var(--grey);
}

.section-briefing .wpb_text_column p:nth-of-type(2){
	display: flex;
	gap: 8px;

}

.section-briefing .wpb_text_column p:nth-of-type(2)::before{
	content: '';
	background-image: url('/wp-content/uploads/2024/12/Vector.svg');
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	width: 17px;
	height: 17px;
	display: block;
}

.section-briefing .wevolved-logo .vc_single_image-wrapper{
	width: unset;
	height: unset;
}

.section-briefing .wevolved-logo.wpb_single_image{
	bottom: 100px;
	left: unset;
	right: 100px;
}

.section-briefing div.vc_custom_heading{
	font-family: 'Familjen';
	font-weight: 700;
	font-size: 40px;
	line-height: 80px;
	color: var(--white);
	position: absolute;
	bottom: 140px;
	right: 100px;
}

.start-btn button.vc_general.vc_btn3.vc_btn3-size-md{
    background-color: var(--black);
    background-image: none;
    color: var(--white);
    font-family: 'Acumin';
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    padding: 16px 18px;
    display: flex;
    gap: 50px;
    border-radius: 100px;
    border: 0px;
    position: absolute;
    top: 215px;
    right: 100px;
    align-items: center;
}

.start-btn button.vc_general.vc_btn3.vc_btn3-size-md:hover{
    background-color: var(--grey);
}

.start-btn button.vc_general.vc_btn3.vc_btn3-size-md::after{
    content: '';
    background-image: url('/wp-content/uploads/2024/12/Vector-1.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
    display: block;
}

.section-briefing.start-form > .vc_col-sm-12 > div > div {
    left: -100vw;
    transition: 1s;
}

.section-briefing.start-form.end-form > .vc_col-sm-12 > div > div {
    left: -200vw;
    transition: 1s;
}


.container-passos{
	width: 100vw;
	height: 100dvh;
}

.container-passos > p{
	padding-top: 200px;
	padding-left: 100px;
	padding-bottom: 64px;
	font-family: 'Acumin';
	font-weight: 700;
	font-size: 16px;
	line-height: 19px;
	color: var(--grey);
}

.section-briefing form{
	position: relative;
}

#prev-btn, #next-btn{
    width: 150px;
    height: fit-content;
    font-family: 'Acumin';
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    padding: 16px 18px;
    display: flex;
    gap: 50px;
    border-radius: 100px;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
    border: 2px solid var(--black);
    cursor: pointer;
}

#next-btn{
    position: absolute;
    top: 200px;
    left: calc(100vw - 100px);
    transform: translateX(-100%);
    color: var(--white);
    background-color: var(--black);
}

#next-btn:hover{
	color: var(--black);
	background-color: var(--white);
}

#next-btn::after,
#prev-btn::before{
	content: '';
	background-image: url('/wp-content/uploads/2024/12/Vector-1.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
	display: block;
	opacity: 1;
}

#next-btn.block{
	pointer-events: none;
	background-color: var(--grey);
	border: 0px;
}

#next-btn.block:hover{
	background-color: var(--grey);
	color: var(--white);
}

#prev-btn {
    position: absolute;
    top: 200px;
    left: calc(100vw - 265px);
    transform: translateX(-100%);
    color: var(--black);
    background-color: var(--white);
    justify-content: flex-end;
}

#next-btn::after {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
}

#prev-btn::before {
	position: absolute;
	top: 50%;
	left: 18px;
	transform: translateY(-50%) rotate(180deg);
	filter: invert(1);
}

#prev-btn:hover{
	color: var(--white);
	background-color: var(--black);
}

#prev-btn:hover::before{
	filter: invert(0);
}

#next-btn:hover::after{
	filter: invert(1);
}

.element-form{
	margin-bottom: 20px;
	padding: 0px 100px;
}

.element-form p{
	font-family: 'Acumin';
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
	color: var(--grey);
}

.element-form label{
	margin-bottom: 10px;
}

.date-project{
	display: flex;
	gap: 4px;
	margin-top: 10px;
}

.date-project span{
	font-family: 'Acumin';
	font-weight: 400;
	font-size: 16px;
	line-height: 16px;
	color: var(--black);
	background-color: var(--grey);
	padding: 6px;
	border-radius: 4px;
}

.slide-passos {
    display: flex;
    position: relative;
    transition: 1s;
    left: 0px;
    width: fit-content;
}

.passo4 textarea{
	height: 200px;
}

.barra-progresso {
    display: flex;
    width: calc(100vw - 200px);
    position: absolute;
    bottom: 50px;
    left: 100px;
}

.barra-progresso > .parts{
	height: 8px;
	background-color: var(--grey);
	position: relative;
}

.barra-progresso > .parts::after{
	content: '';
	width: 24px;
	height: 24px;
	border-radius: 100%;
	background-color: var(--grey);
	right: 0px;
	top: 50%;
	position: absolute;
	transform: translateX(50%) translateY(-50%);
	display: block;
	z-index: 1;
}

.barra-progresso > .parts.active,
.barra-progresso > .parts.active::after{
	background-color: var(--black);
}

.final-submit{
	display: flex;
    position: absolute;
    bottom: -150px;
    left: 100px;
    justify-content: space-between;
    width: calc(100vw - 200px);
    transition: 0.5s;
}

.final-submit.active {
	bottom: 150px;
	transition: 0.5s;
}

.final-submit input[type="submit"]{
	font-family: 'Familjen';
	font-weight: 700;
	font-size: 80px;
	line-height: 80px;
	color: var(--black);
	margin: 0px;
	background-color: transparent;
}

.final-submit > p{
	display: flex;
	gap: 34px;
	width: fit-content;
	position: relative;
	align-items: center;
}

.final-submit > p::after {
	content: '';
	background-image: url('/wp-content/uploads/2025/01/Vector.svg');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	width: 67px;
	height: 34px;
	display: block;
	margin-top: 25px;
}

.final-submit span.wpcf7-spinner {
    position: absolute;
    top: 50%;
    left: -80px;
    transform: translateY(-50%);
    margin-top: 15px;
}

.section-briefing .wpcf7-response-output{
	display: none;
}

.section-briefing .wpb_wrapper > .wpcf7{
	width: 100vw;
}

.section-briefing .vc_inner.form-submitted .vc_single_image-wrapper {
    width: 100vw;
    height: 53vh;
}

.section-briefing .vc_inner.form-submitted  .wpb_single_image {
    position: absolute;
    bottom: unset;
    left: 0px;
    top: 0px;
}

.section-briefing .form-submitted .wpb_text_column {
    padding-left: 100px;
    padding-top: 60px;
    position: absolute;
    bottom: 100px;
}

.section-briefing .form-submitted h2{
	margin-bottom: 32px;
}

.section-briefing .form-submitted  .wpb_text_column p, 
.section-briefing .form-submitted  .wpb_text_column p strong {
    font-size: 32px;
    line-height: 38px;
    color: var(--grey);
}

.section-briefing .form-submitted .wevolved-logo .vc_single_image-wrapper{
	width: 290px;
	height: 48px;
}

.section-briefing .vc_inner.form-submitted .wpb_single_image.wevolved-logo{
	position: absolute;
	top: unset;
	left: unset;
	bottom: 100px;
	right: 100px;
}

input.hidden{
	display: none;
}

@media only screen and (max-width: 1650px){
	.final-submit input[type="submit"],
	.final-submit h2 {
	    font-size: 70px;
	}
}

@media only screen and (max-width: 1440px){
	label {
	    font-size: 35px;
	    line-height: 35px;
	}

	textarea {
	    margin-bottom: -25px;
	}

	.section-briefing h1 {
	    padding-top: 130px;
	}

	.start-btn button.vc_general.vc_btn3.vc_btn3-size-md {
	    top: 145px;
	}

	.section-briefing .vc_inner .vc_single_image-wrapper {
	    height: 38vh;
	}

	.section-briefing .wevolved-logo .vc_single_image-wrapper {
	    height: unset;
	}

	.container-passos > p {
	    padding-top: 130px;
	    padding-bottom: 40px;
	}

	#prev-btn, #next-btn {
	    top: 130px;
	}

	.final-submit input[type="submit"], .final-submit h2 {
        font-size: 55px;
        line-height: 60px;
    }

    .final-submit.active {
	    bottom: 110px;
	}

	.final-submit > p::after {
	    width: 50px;
	    margin-top: 19px;
	}

	.section-briefing .form-submitted h2 {
	    font-size: 55px;
	    line-height: 55px;
	}

	.section-briefing .form-submitted .wpb_text_column p,
	.section-briefing .form-submitted .wpb_text_column p strong {
	    font-size: 25px;
	    line-height: 31px;
	}

	.section-briefing .vc_inner.form-submitted .vc_single_image-wrapper {
	    height: 50vh;
	}

	.section-briefing .form-submitted .wevolved-logo .vc_single_image-wrapper {
	    width: 290px;
	    height: 48px;
	}

	.element-form {
	    margin-bottom: 12px;
	    padding: 0px 100px;
	}
}

@media only screen and (max-width: 1200px){

	p, p strong {
	    font-size: 24px;
	    line-height: 30px;
	}

	h1 {
	    font-size: 60px;
	    line-height: 55px;
	}

	.section-briefing h1 {
	    width: 600px;
	}

	label {
        font-size: 30px;
        line-height: 30px;
    }

	.final-submit input[type="submit"], .final-submit h2 {
        font-size: 40px;
        line-height: 50px;
    }

    .barra-progresso > .parts {
    	height: 6px;
	}

	.final-submit.active {
        bottom: 85px;
    }

    .barra-progresso > .parts::after {
	    width: 18px;
	    height: 18px;
	}

	.section-briefing .form-submitted h2 {
        font-size: 45px;
        line-height: 45px;
        margin-bottom: 18px;
    }

    .section-briefing .form-submitted .wpb_text_column p, 
    .section-briefing .form-submitted .wpb_text_column p strong {
        font-size: 18px;
        line-height: 23px;
    }

    .section-briefing .wevolved-logo .vc_single_image-wrapper {
    	width: 235px;
        height: auto;
    }

   	.section-briefing .form-submitted .wevolved-logo .vc_single_image-wrapper {
        width: 235px;
        height: auto;
    }

    .section-briefing div.vc_custom_heading {
	    font-size: 35px;
	    line-height: 50px;
	}
}

@media only screen and (max-width: 1100px){

	label {
        font-size: 25px;
        line-height: 20px;
    }

    textarea {
	    height: 30px;
	}

	.section-briefing h1 {
	    padding-left: 60px;
	    padding-top: 100px;
	}

	.wrapper-header {
	    width: calc(100vw - 120px);
	    left: 60px;
	    top: 30px;
	}

	.section-briefing p.vc_custom_heading {
	    padding-left: 60px;
	}

	.section-briefing .wpb_text_column {
	    padding-left: 60px;
	}

	.section-briefing .wevolved-logo.wpb_single_image {
    	bottom: 50px;
	    right: 60px;
	}

	.section-briefing div.vc_custom_heading {
	    bottom: 90px;
	    right: 60px;
	}

    .section-briefing .vc_inner .wevolved-logo .vc_single_image-wrapper {
        height: auto;
    }

    .start-btn button.vc_general.vc_btn3.vc_btn3-size-md {
	    padding: 12px 18px;
	    gap: 25px;
	    border-radius: 100px;
	    right: 60px;
	    top: 115px;
	}

	.container-passos > p {
	    padding-left: 60px;
	}

	#prev-btn, #next-btn {
	    width: 140px;
	    padding: 12px 18px;
	    gap: 25px;
	}

	#next-btn {
	    left: calc(100vw - 60px);
	}

	#prev-btn {
	    left: calc(100vw - 215px);
	}

	.element-form {
        padding: 0px 60px;
    }

    .barra-progresso {
	    width: calc(100vw - 120px);
	    left: 60px;
    	bottom: 30px;
	}

	.container-passos > p {
        padding-top: 100px;
        padding-bottom: 30px;
    }

    .final-submit {
	    left: 60px;
	    width: calc(100vw - 120px);
	}

	.section-briefing .form-submitted .wpb_text_column {
	    padding-left: 60px;
	    bottom: 50px;
	}

	.section-briefing .vc_inner.form-submitted .wpb_single_image.wevolved-logo {
	    bottom: 50px;
	    right: 60px;
	}
}

@media only screen and (max-width: 991px){
	h1 {
        font-size: 40px;
        line-height: 40px;
    }

    p, p strong {
        font-size: 16px;
        line-height: 19px;
    }

    label {
        font-size: 24px;
        line-height: 30px;
    }

    input, input::placeholder {
	    font-size: 14px;
	    line-height: 16px;
	}

	.wrapper-header {
        width: calc(100vw - 50px);
        left: 25px;
        top: 70px;
    }

    .section-briefing h1 {
        padding-left: 25px;
        padding-top: 220px;
        width: 350px;
    }

   	.section-briefing p.vc_custom_heading {
        padding-left: 25px;
        padding-top: 30px;
    }

    .section-briefing .wpb_text_column {
        padding-left: 25px;
    }

    .start-btn button.vc_general.vc_btn3.vc_btn3-size-md {
        right: 0;
        top: 0;
        position: relative;
        margin-left: 25px;
        width: 150px;
        justify-content: space-between;
        margin-top: 32px;
    }

    .container-passos > p {
        padding-top: 220px;
        padding-bottom: 25px;
        padding-left: 25px;
    }

    .element-form {
        margin-bottom: 22px;
        padding: 0px 25px;
    }

    #next-btn, #prev-btn {
        font-size: 0;
        width: 45px;
        height: 45px;
        padding: 0px;
        gap: 0px;
    }

    #next-btn{
        left: calc(100vw - 25px);
        top: unset;
        bottom: 150px;
    }

    #prev-btn{
    	left: calc(100vw - 90px);
    	top: unset;
    	bottom: 150px;
    }

    #next-btn::after {
	    position: absolute;
	    right: 50%;
	    top: 50%;
	    transform: translateY(-50%) translateX(50%);
	}

	#prev-btn::before {
	    position: absolute;
	    top: 50%;
	    left: 50%;
	    transform: translateY(-50%) translateX(-50%) rotate(180deg);
	}

	.barra-progresso {
        width: calc(100vw - 50px);
        left: 25px;
        bottom: 100px;
    }

    .final-submit.active {
        bottom: 350px;
    }

    .final-submit {
        left: 25px;
        width: calc(100vw - 50px);
        flex-direction: column;
    }

    .final-submit input[type="submit"]{
        font-size: 20px;
        line-height: 30px;
        padding: 0px;
    }

    .final-submit span.wpcf7-spinner {
	    position: absolute;
	    top: 5%;
	    left: unset;
	    transform: none;
	    margin-top: 12px;
	    right: -80px;
	}

	.final-submit > p::after {
        width: 38px;
        margin-top: 6px;
    }

    .final-submit > p {
	    gap: 20px;
	}

	.section-briefing .vc_inner.form-submitted .wpb_single_image.wevolved-logo {
        bottom: 0;
        right: 0;
        margin-left: 25px;
        position: relative;
        margin-top: 32px;
    }

    .section-briefing .form-submitted .wevolved-logo .vc_single_image-wrapper {
        width: 150px !important;
        height: auto !important;
    }

    .section-briefing .form-submitted h2 {
        font-size: 40px;
        line-height: 40px;
    }

    .section-briefing .form-submitted .wpb_text_column {
        padding-left: 25px;
        bottom: 0;
        position: relative;
        padding-top: 80px;
    }

    .form-submitted > div > div > div{
    	display: flex;
	    flex-direction: column;
	    height: 100dvh;
	    justify-content: flex-end;
	    padding-bottom: 80px;
    }

    .section-briefing .form-submitted .wpb_text_column p, 
    .section-briefing .form-submitted .wpb_text_column p strong {
        font-size: 16px;
        line-height: 19px;
    }

    .section-briefing .vc_inner.form-submitted .vc_single_image-wrapper {
        height: calc(100dvh - 370px);
    }

    .section-briefing div.vc_custom_heading {
        bottom: 100px;
        font-size: 24px;
        right: 25px;
        line-height: 30px;
    }

    .section-briefing .wevolved-logo .vc_single_image-wrapper {
        width: 145px;
        height: auto;
    }

    .section-briefing .wevolved-logo.wpb_single_image {
        bottom: 70px;
        right: 25px;
    }

    .section-briefing .vc_inner .vc_single_image-wrapper {
        height: calc(100dvh - 570px);
    }

}

@media only screen and (max-width: 480px){
	.wrapper-header {
        top: 50px;
    }

	textarea {
		height: 45px;
	}

	.barra-progresso > .parts {
        height: 4px;
    }

    .barra-progresso > .parts::after {
        width: 12px;
        height: 12px;
    }

	.barra-progresso {
        bottom: 8vh;
    }

    #next-btn, #prev-btn {
        bottom: 12vh;
    }

   	.group-elements {
	    max-height: calc(100dvh - 360px);
	    overflow: scroll;
	}

	.container-passos > p {
        padding-top: 150px;
    }

    .section-briefing h1 {
        padding-top: 150px;
    }

    .section-briefing .vc_inner .vc_single_image-wrapper {
        height: calc(100dvh - 470px);
    }

    .final-submit.active {
        bottom: 35vh;
    }

    .section-briefing .form-submitted h2 {
        font-size: 36px;
        line-height: 36px;
    }
}

@media only screen and (max-width: 350px){

	h1 {
        font-size: 30px;
        line-height: 30px;
    }

	.wrapper-header {
        top: 25px;
    }

    .section-briefing h1 {
        padding-top: 100px;
        width: 250px;
    }

    .wrapper-header p, .wrapper-header p strong {
	    font-size: 13px;
	    line-height: 15px;
	}

	ul.idiomas-menu li, ul.idiomas-menu li a {
	    list-style: none;
	    font-family: 'Acumin';
	    font-weight: 400;
	    font-size: 13px;
	    line-height: 15px;
	    color: var(--black);
	    position: relative;
	}

	.section-briefing p.vc_custom_heading {
        padding-left: 25px;
    }

    .section-briefing .wpb_text_column p, .section-briefing .wpb_text_column p strong {
	    font-size: 14px;
	    line-height: 17px;
	}

	.section-briefing .wpb_text_column p:nth-of-type(2)::before {
	    width: 15px;
	    height: 14px;
	}

	.section-briefing .vc_inner .vc_single_image-wrapper {
        height: calc(100dvh - 390px);
    }

    .section-briefing .wevolved-logo.wpb_single_image {
        bottom: 30px;
        right: 25px;
    }

    .section-briefing div.vc_custom_heading {
        bottom: 60px;
        right: 25px;
    }

    .container-passos > p {
        padding-top: 100px;
    }

    .group-elements {
        max-height: calc(100dvh - 300px);
        overflow: scroll;
    }

    .final-submit h2 {
        font-size: 32px;
        line-height: 32px;
    }

    .final-submit.active {
        bottom: 30vh;
    }

    .section-briefing .form-submitted h2 {
        font-size: 32px;
        line-height: 32px;
    }

    .section-briefing .form-submitted .wpb_text_column p, 
    .section-briefing .form-submitted .wpb_text_column p strong {
        font-size: 14px;
        line-height: 19px;
    }
}
}