/* Table of Content
==================================================
	#Font-Face
	#Site Styles
	#Media Queries */

/* #Font-Face
================================================== */


/* #Site Styles
================================================== */
:root {
	--width-base: 845px;
	--width-lg: 950px;
	--font-family-base: 'Nunito';
	--font-size-base: 1rem;
	--line-height-base: 1.5;
	--font-family-icon: 'icomoon';
	--line-height-heading: 1.1;
	--font-size-h1: 3.25rem;
	--font-size-h2: 2.625rem;
	--font-size-h3: 1.625rem;
	--font-size-h4: 1.625rem;
	--font-size-h5: 1.25rem;
	--font-size-h6: 1.125rem;
	--color-primary: #00529B;
	--color-white: #ffffff;
	--color-black: #000000;
	--color-light: #FBFBFB;
	--color-light-100: #DDDDDD;
	--color-dark: #474747;
	--color-dark-100: #EFEFEF;
	--color-grey: #F7F7F7;
	--color-grey-100: #CDCDCD;
	--color-grey-200: #aaaaaa;
	--color-grey-300: #bebebe;
	--color-icon-bg: #DFE8F0;
	--base-duration: all 0.3s;
	--font-base: 16px;
	--font-large: 20px;
}

/* ### general ### */
* { margin: 0; padding: 0; box-sizing: border-box; }
html,
body { font-family: var(--font-family-base), sans-serif; background: var(--color-light); font-size: var(--font-size-base); line-height: var(--line-height-base); color: var(--color-primary); }
input,
select,
textarea { padding: 9px 10px; width: 100%; font-size: 15px; border: 1px solid var(--color-grey-200); border-radius: 8px; font-family: var(--font-family-base), sans-serif; color: var(--color-black); position: relative; }
label { color: var(--color-black); margin-bottom: 5px; display: block; }
button { border: none; }
img { display: block; max-width: 100%; border: 0; }
ul,
li { list-style: none; }
:focus { outline: none; }
p { margin-bottom: 20px; }
a { display: inline-block; text-decoration: none; }


/* ### global classes ### */
.centered-lg { padding-right: 15px; padding-left: 15px; }
.centered { padding-right: 15px; padding-left: 15px; }
.button { padding: 13px 14px; position: relative; display: flex; font-family: var(--font-family-base), sans-serif; font-size: var(--font-size-base); font-weight: 600; line-height: 1; color: var(--color-white); border-radius: 8px; background-color: var(--color-primary); transition: var(--base-duration); cursor: pointer; justify-content: center; }
.button:focus,
.button:hover { background-color: #043e73; }
.button.secondary { background-color: var(--color-grey-300); }
.button.secondary:focus,
.button.secondary:hover { background-color: var(--color-grey-200); }


/* ### wrapper ### */
.wrapper { position: relative; display: block; width: 100%; min-height: 100%; overflow: clip; }

/* ### main ### */
.main { width: 100%; }

/* ### header container ### */
header { position: relative; width: 100%; padding: 60px 0 30px 0; }
header .icon { position: absolute; right: 20px; top: 20px; width: 35px; height: 35px; border-radius: 100%; display: flex; justify-content: center; align-items: center; background-color: var(--color-icon-bg); transition: var(--base-duration); }
header .icon i { color: var(--color-primary); }
header .icon:focus,
header .icon:hover { background-color: var(--color-primary); }
header .icon:focus i,
header .icon:hover i { color: var(--color-white); }

/* ### body holder ### */
.body-holder { padding-top: 44px; padding-bottom: 50px; background-color: var(--color-white); border-radius: 20px 20px 0 0; border: 1px solid var(--color-light-100); }

/* ### item ### */
.item { margin-bottom: 50px; }

/* ### title ### */
.title { font-size: var(--font-large); font-weight: 700; color: var(--color-primary); }

/* ### location-top ### */
.location-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 48px; }
.location .button:before { content: '\e908'; display: inline-block; font-family: var(--font-family-icon), sans-serif; margin-right: 10px; vertical-align: middle; }


/* ### card-location ### */
.card-location { border-bottom: 1px solid var(--color-grey-100); }
.card-location:first-child { border-top: 1px solid var(--color-grey-100); }
.card-location-top { position: relative; padding: 10px 35px 10px 10px; cursor: pointer; }
.card-location-top:after { position: absolute; top: 19px; right: 13px; font-family: var(--font-family-icon), sans-serif; content: '\e901'; color: var(--color-black); font-size: 14px; transition: var(--base-duration); }
.card-location-top.active:after { transform: rotate(180deg); }
.card-location-title { font-weight: 700; color: var(--color-dark); margin-bottom: 5px; }
.card-location-links { display: flex; }
.card-location-links a { width: 38px; height: 38px; display: flex; justify-content: center; align-items: center; color: var(--color-primary); border-radius: 8px; background-color: var(--color-dark-100); transition: var(--base-duration); }
.card-location-links a:not(:last-child) { margin-right: 10px; }
/* .card-location-links a:focus, */
.card-location-links a:hover { background-color: var(--color-primary); color: var(--color-white); text-decoration: none; }
.card-location li { background-color: var(--color-grey); display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--color-grey-100); padding: 10px 15px 8px 15px; }
.card-location li:last-child { border-bottom: 2px solid var(--color-primary); }
.card-location span { color: var(--color-dark); }
.card-location-buttons a { color: var(--color-primary); font-size: 10px; }
.card-location-buttons a:not(:last-child) { margin-right: 6px; }
.location-link a:hover { color: var(--color-white); text-decoration: none; }


/* ### product ### */
.product { padding-bottom: 40px; border-bottom: 1px solid var(--color-grey-100); }
.product-back { color: var(--color-grey-200); font-size: var(--font-large); margin-bottom: 10px; transition: var(--base-duration); }
.product-back:focus,
.product-back:hover { color: var(--color-dark); }
.product .title { padding-bottom: 11px; border-bottom: 1px solid var(--color-grey-100); margin-bottom: 41px; }

/* ### card-form ### */
.card-form { margin-bottom: 25px; }
.card-form-item { width: 100%; }
.card-form-links { display: flex; gap: 20px; }
.card-form-links button { width: 50%; }
.card-form .upload { padding: 9px 10px; width: 100%; font-size: 15px; border: 1px solid var(--color-grey-200); border-radius: 8px; font-family: var(--font-family-base), sans-serif; color: var(--color-black); position: relative; height: 40px; }
.card-form .upload input { position: absolute; top: 0; left: 0; width: 100%; height: 100%; -webkit-appearance: none; opacity: 0; }
.card-form .upload:before { position: absolute; top: 4px; right: 8px; font-size: 20px; color: var(--color-primary); content: '\e909'; display: inline-block; font-family: var(--font-family-icon), sans-serif; }
.card-form .upload input::file-selector-button { border: none; display: none; background: transparent; }
.card-form .upload span { font-weight: 400; font-family: var(--font-family-base), sans-serif; color: var(--color-dark); }

/* ### module ### */
.module { max-width: 409px; margin: 0 auto; padding-bottom: 54px; }
.module .title { font-size: 23px; font-weight: 500; text-align: center; margin-bottom: 35px; }
.module .card-form { margin-bottom: 22px; }
.module button { width: 100%; margin-top: 40px; }


	/* ### footer container ### */
#footerCntr { overflow: hidden; width: 100%; }

/* #Media Queries
================================================== */

@media only screen and (min-width: 479px) {

}

@media only screen and (min-width: 767px) {
	header { padding: 40px 0; }
	header .icon { right: 6px; top: 9px; }
	.header-holder { display: flex; justify-content: center; position: relative; }
	header .logo { margin-right: 16px; }
	.item { margin-bottom: 72px; }
	.product-back { margin-bottom: 30px; }
	.card-form { margin-bottom: 39px; }
	.card-location-top { display: flex; justify-content: space-between; align-items: center; padding: 10px 52px 10px 20px; }
	.card-location-title { margin-bottom: 0; }
	.card-location li { padding: 10px 57px 8px 33px; }
	.card-form-holder { display: flex; gap: 40px; }
	.card-form-item { width: 50%; }
}

@media only screen and (min-width: 1025px) {

}

@media only screen and (min-width: 975px) {
	.centered { padding-right: calc((100% - var(--width-base)) / 2); padding-left: calc((100% - var(--width-base)) / 2); }
	.centered-lg { padding-right: calc((100% - var(--width-lg)) / 2); padding-left: calc((100% - var(--width-lg)) / 2); }
}

