/*
**  자주사용하는 커스컴 CSS
*/
/*-------- 1.1 Typography --------*/
/* rem reference
10px = 0.625rem
12px = 0.75rem
14px = 0.875rem
16px = 1rem (base)
18px = 1.125rem
20px = 1.25rem
24px = 1.5rem
30px = 1.875rem
32px = 2rem
*/
:root {
  /*----primary-color: #212121;
  --secondary-color:#104cba;
  --border-color: #E5E5E5;
   --foreground-sub-color: #969697;
     --body-background-color: #fff;
  --bg-offwhite-color: #fdfdfd;
  --b_grey2:#b8c8dc;
  --light-grey #f3f6fb;
  --color-1: #ff0071;

 */
 --primary-blue:#004dda;
 --secondary-blue:#0163d2;
 --primary-color:#202026;
 --point-blue:#172bff;
 --border-color: #dde0e3;
 --border-color-1: #ededed;
 --border-color-2: #d2d5d8;
 --borderdark-color:#cfcfd0;
 --bg-light-dark-color: #1a1818;
 --grey-sub-color: #f7faff ;
  --light_blue: #598bfd;
  --bg-black-color: #000000;
  --text-white: #fff;
  --bg-whiite: #fff;
  --b_grey:#99b2cc;
  --thm-black2:#666666;
  --thm-black3:#121212;
  --thm-grey:#d6d6d6;

   --color-1: #ff0071;
  --color-2: #ff001d;
  --color-3: #5db408;
  --color-4: #00a4e4;
  --primary-red:#ED1D24;
  --grey:#e2eaf3;
 --purple :#594fea;
 
  --yel : #cabc25;
 --green: #32a067;
  --red: #e54750;
  --red-2: #fc3333;
  --green2: #3dbf8c;
 --sblue: #06f4e6;


  --open-sans-fonts: "Open Sans", sans-serif;
  --rubik-fonts: "Rubik", sans-serif;
  --inter-fonts: "Inter", sans-serif;
   --noto-fonts:'Noto Sans KR',"Noto Sans Korean", sans-serif;

  --body-font-size: 1.5rem;
  --body-font-weight: 400;
  --mid-font-weight: 500;
  --body-line-height: 2.8rem;
  --headings-weight: 700;
  --transition: all 0.3s ease 0s;
  --container-fluid-offset: 12rem;
/* Border radius */
  --border-radius-none: 0;
  --border-radius-small: 3px;
  --border-radius-medium: 5px;
  --border-radius-large: 10px;
  --border-radius-circle: 50%;


}



/*-------- 1.1 Typography -------- */
.form-control::placeholder{color:#111;opacity:1;font-weight: 600;}

/* Sizes */
.text-xs { font-size: 12px; }
.text-sm { font-size: 14px; }
.text-md { font-size: 16px; }
.text-lg { font-size: 20px; font-weight: 700;}
.text-xl { font-size: 30px;   font-weight: 700;}

/* Responsive */
@media (max-width: 767px){	
body {font-size: 14px;}
.text-lg { font-size: 16px; }

}

.container {
  max-width: 1280px;
}

.container-m {
  max-width: 1200px;
}

.container-s {
  max-width: 960px;text-align: center;
}

.container-xs {
  max-width: 900px;
}

@media (max-width: 991px) {
  .container {
    max-width: 100%;
  }

.container-s,.container-xs {
  max-width: 100%;
}
.container-m {
 max-width: 100%;
}


}


.rounded {
	border-radius: 5px !important;
}
.border-all {
	border: 1px solid #DADADA !important;
}

.small-gutters {
  margin-right: -5px !important;
  margin-left: -5px !important;
}
.small-gutters > [class*="col-"] {
  padding-right: 5px !important;
  padding-left: 5px !important;
}
/* Radio buttons */
.container_radio {
  display: block;
  position: relative;
  padding-left: 30px;
  line-height: 1.6;
  margin-bottom: 8px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-weight: 400;
}
.container_radio input {
  position: absolute;
  opacity: 0;
}
.container_radio input:checked ~ .checkmark {
  border: 2px solid var(--purple);
  -webkit-box-shadow: 0px 0px 0px 2px rgba(75, 92, 234, 0.3);
  -moz-box-shadow: 0px 0px 0px 2px rgba(75, 92, 234, 0.3);
  box-shadow: 0px 0px 0px 2px rgba(75, 92, 234, 0.3);
}
.container_radio input:checked ~ .checkmark:after {
  opacity: 1;
}
.container_radio .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border: 2px solid var(--purple);
  background-color: #fff;
  border-radius: 50%;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.container_radio .checkmark:after {
  display: block;
  content: "";
  position: absolute;
  opacity: 0;
  top: 3px;
  left: 3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--purple);
}
.container_radio:hover .checkmark {
  border: 2px solid var(--purple);
}
/*=== >background color ===*/
.btn-wrap         { width: 100%; float: left; margin: 15px 0px;}
.btn-wrap a       { display: block; float: right;  margin-left: 5px; color: #FFF; text-align: center; font-weight: bold;}
.btn-positive     { background:#6d63ff; }

.btn-sky        { background-color: #28a7e1; }  
.btn-blue        { background-color: #1982c4; }   
.btn-red          { background-color: #ec5d4f; } 
.btn-gray         { background-color: #707070; } 
.btn-lgray        { background-color: #e9e9e9; color: #777 !important;} 

/* Colors */
.text-primary { color: #1d2088; }
.text-secondary { color: #1f1f1f; }
.text-blue { color:#3651e0; }
.text-red { color: #e83231; }
.text-red2 { color: #e54750; }
.text-info { color: #2786c9; }
.text-sky { color: #05c0fd; }
.text-green { color: #22b14c; }

.text-yel { color: #ddcb03; }
.text-yel2 { color: #edae05; }
.text-warning { color: #f19354; }
.text-danger { color: #e74c3c; }
.text-success { color: #8ac04b; }
.text-dark { color: #121212; }
.text-light { color: #fff; }
.text-grey { color: #9ca2ab; }
.text-grey2 { color: #7a8391; }
.text-pink { color: #ff3c85; }



 a.btn-positive:hover,a.btn-gray:hover {
  opacity: 1;
  color: #fff;background: #3651e0;
}





/*=== >background color ===*/
/*=== >background color ===*/

.bg-transparent { background-color: transparent;}
.bg-light_blue  {background-color:#b8c8dc ;}
.bg-primary {background-color:#e2eaf3;}
.bg-primary_blue{background-color:#004dda;}

.bg-white { background-color: #FFF;}
.bg-black {    background-color: #000;}
.bg-dark {    background-color: #15141b;}
.bg-black-light {    background-color: #1C1C1C;}
.bg-gray-dark {    background-color: #edecff;}
.bg-red {    background-color: #FF4045;}
.bg-green {    background-color: #34bfa3;}
.bg-yellow {    background-color: #ffb822;}
.bg-pink {    background-color: #ff3c85;}
.bg-sky {    background-color: #f7faff;}
.bg-orange {    background-color: #ef9800;}
.bg-blue { background-color: #0163d2; }

.sky-gradient { background: -webkit-linear-gradient(left,#004dda, #00c5dc);}
.blue-gradient { background: -webkit-linear-gradient(left,#00a4e4, #5db408);}
.red-gradient { background: -webkit-linear-gradient(left,#FF4045, #ff3c85); }
.green-gradient { background: -webkit-linear-gradient(left,#22b14c, #34bfa3); }

.bg_gra {
 background: linear-gradient(to right,red,blue);

}


.bg-theme {
  background-color: #bb9225;
}


.bg-gray {
  background-color: #f9f9f9;
}
.bg-gray-light {
  background-color: #f7f7f7;
}
.bg-theme-small {
  background-color: #edf5ff;
}

.bg-light {
  background-color: #ffffff;
}


/* 영문폰트와 한글폰트 기본Google Fonts
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Noto+Sans+KR:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:400,500,600,700,800&family=Source+Sans+Pro&display=swap');*/

.Mont {font-family: "Montserrat",sans-serif;}
.Poppins{font-family: 'Poppins', sans-serif;}
.op{font-family: 'Open Sans', sans-serif;}

/*-------- 1.2 Structure --------*/
/*-------- 1.2 Buttons --------*/
/*General links color*/
a {
 color: #555;
  text-decoration: none;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  outline: none;
}
a:hover, a:focus {
  color: #121212;
  text-decoration: none;
  outline: none;
}

a.btn_1,.btn_1,a.btn_main,.btn_main {
  border: none;
  color: #fff;
 background: #6762fd; 
  cursor: pointer;
  padding: 7px 20px;
  display: inline-block;
  outline: none;
  font-size: 14px;
  font-size: 0.875rem;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  border-radius: 25px;
  font-weight: 500;
}

a.btn_2,
.btn_2 {
  border: none;
  color: #fff;
  background: #121212;
  cursor: pointer;
  padding: 12px 45px;
  display: inline-block;
  outline: none;
  font-size: 14px;
  font-size: 0.875rem;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  border-radius: 25px;
  font-weight: 500;
}


a.btn_1.sm,
.btn_1.sm {
 padding: 10px 40px;
  
}


a.btn_1.medium,
.btn_1.medium {
  padding: 12px 45px;
  font-size: 16px;
  font-size: 1rem;
}
a.btn_1.full-width,
.btn_1.full-width {
  display: block;
  text-align: center;
  padding: 12px 45px;
  font-size: 16px;
  font-size: 1rem;
  width: 100%;
}
a.btn_1:hover,
.btn_1:hover {
  background: #3651e0;
}
a.btn_1.outline,
.btn_1.outline {
  background: transparent;
  border: 2px solid #121212;
  color: #121212;
}
a.btn_1.outline:hover,
.btn_1.outline:hover {
  background: transparent;
  color: #353eb0;
}


a.btn_1.blue,
.btn_1.blue {
  background: #3651e0;
  color: #fff;
}


a.btn_1.grey,
.btn_1.grey {
  background: #f5f8fa;border:1px solid #ede8e8;
  color:#666;
}
a.btn_1.blue:hover,
.btn_1.blue:hover {
  background: #353eb0;
  color: #fff;
}

/* btn 관련 부분은 bootstrap.min.css에 기본값은 있음 폰트 크기만 조정*/
.btn.btn-xs {
	font-size: 11.2px;
	font-size: 0.7rem;
	
}

.btn.btn-sm {
	font-size: 12.8px;
	font-size: 0.8rem;
	
}

.btn.btn-lg {
	font-size: 16px;
	font-size: 1rem;
	
}

/* 메인 및 서브 오버 bg 배경색들 */
.shadow {
  position: relative;
  z-index: 1;
}

.shadow.dark::after {
  background: #082733 none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.7;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.shadow.dark-hard::after {
  background: #121212 none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.8;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.shadow.light::after {
  background: #ffffff none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.3;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.shadow.theme::after {
  background: #bb9225 none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.5;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.shadow.theme-hard::after {
  background: #bb9225 none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.7;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}


/*스테이스 ㅡmargin--*/
.space_btn2 {margin-left:10px;}
.space_btn {margin-right: -1px; margin-top: -1px;margin-left:10px;}
.space_top10 {margin-top:10px;}
.space_top50 {margin-top:50px;}

/*스피드 견적 부분에 스페이싱 추가*/
.spped_est_spacse { margin-top:10px;
  margin-bottom:5px;
}


.add_minus_20 {
  margin-top:-20px;
}

.default-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.md-padding {
  padding-top: 60px;
  padding-bottom: 60px;
}

/* Section padding2 */
 .xs-padding  {
  padding-top:10px;
  padding-bottom: 10px;

}

.sm-padding {
  padding-top: 30px;
  padding-bottom: 30px;
}

.main-padding {
  padding-top:260px;
  padding-bottom: 0px;
}


/* Responsive */
@media (max-width: 767px){	
.space_top50 {margin-top:30px;}

.sm-padding {
  padding-top: 20px;
  padding-bottom: 20px;
}

.md-padding {
  padding-top: 30px;
  padding-bottom: 30px;
}
.main-padding {
    padding-top:120px;
    padding-bottom: 0px;
  }
}


/* --------------------------------------------------------------------------
/* ---마진  ㅊ가
/* ----------------------------------------------------------------------------- */



/* Section padding */
.section--padding {
  padding-top:30px;
  padding-bottom: 30px;
}

/* Section padding2 */
 .banner--padding  {
  padding-top:10px;
  padding-bottom: 20px;
}


/* Section padding */
.section--main {
  padding-top:40px;
  padding-bottom:30px;
}

/* Section padding2 */
 .news--padding  {
  padding-top:10px;
  padding-bottom:60px;
}


@media (max-width: 767px) {
.section--padding {
    padding-top:10px;
    padding-bottom:10px;
  }
 .banner--padding  {
    padding-top:10px;
    padding-bottom:10px;
  }
.section--main {
  padding-top:20px;
  padding-bottom: 20px;
}

 .news--padding  {
  padding-top:10px;
  padding-bottom: 20px;
}

}


/* --------------------------------------------------------------------------
/* --- 2. BASICS
/* ----------------------------------------------------------------------------- */
.relative { position: relative; z-index: 2; }
.container { position: relative; }

/*---------------------------------------------------------------
3. 셀렉트기본purchase

---------------------------------------------------------------*/
select {  font-size: 14px;
  font-size: 0.875rem; color: #000; font-weight: 600;vertical-align:middle; padding: 5px; border: 1px solid var(--border-color); height:50px;line-height: 32px;  padding-left: 10px;width:100%; min-width: 120px;  cursor: pointer; }
select:focus{ background-color: #ffffff; font-style: normal;   outline: none; 
-webkit-box-shadow: none;  -moz-box-shadow: none;  box-shadow: none; border-color: 1px solid var(--green2);  outline: 0;  box-shadow: 0 0 0 0.1rem rgba(0, 0, 0, 0.05);}



input[type="checkbox"] { width:1.5rem;  height:1.5rem; height:30px;accent-color:#d95a6f;vertical-align:middle;   }/*크기 조정  컬러조정*/
input[type="radio"] { width: 1.25rem; height:1.25rem;accent-color:MidnightBlue;vertical-align:middle; }
/*체크박스 크기 및 컬러*/

/*엑센트 컬러를 루트에 등록해서 사용도 가능*/



input { background:#fff;; color: #000; vertical-align:bottom; border:1px solid var(--thm-black3); height: 42px;   }
.space_btn2 {margin-left:10px;}
.space_btn {margin-right: -1px; margin-top: -1px;margin-left:10px;}


input[type='submit'] {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #fff;
  font-weight:500;
  font-size: 14px;
  font-size: 0.875rem;
  border: 0;
  padding: 10px 20px;
  
  cursor: pointer;
  outline: none;
  width: 100%;
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  -ms-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;

  margin-right: -1px; margin-top: -1px;
}


input[type='submit']:hover {
 background-color:  var(--bg-whiite);
  color: var(--border-color);
}

/*레벨값이 위로 움직이는 자바스크립와 함께사용custom_form.js*/
.filter-style3 form .form-group{position:relative;}
.filter-style3 form .form-group .title{
    margin: 0;
    position: absolute;
    font-weight: 500;
    color: #000;
    left: 15px;
    top: 13px;
	transition:all 0.5s;
	-moz-transition:all 0.5s;
	-webkit-transition:all 0.5s;
	-ms-transition:all 0.5s;
	-o-transition:all 0.5s;  font-size: 14px;
  font-size: 0.875rem;
	/*background: var(--b_grey);padding: 0 5px;*/
	 background-color:  var(--bg-whiite);
}



.filter-style3 form .form-group.focused .title{
    top: -8px;
    z-index: 2;
    font-size: 12px;
    font-weight: 500;
    background:#fff;;padding: 0 5px;color: var(--purple);
}

/*입력부분 별 간격*/
.filter-style3 form .form-control{ margin:0px;
    height: 50px;
    background: transparent;
    border: 1px solid var(--border-color-2);
    color: #000;
    padding: 10px 20px;
    font-size: 14px;
	z-index: 1;
    position: relative;
}
.filter-style3 form .site-button{
    border-radius: 0;
    padding: 15px 20px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
}


.filter-style3 textarea {
     border:1px solid var(--border-color);
    width: 100%;
     max-height:120px;min-height:100px;
}

.filter-style3 h3 {
  font-size: 16px;
  font-size: 1rem;
  padding-left: 0px;
  margin-bottom:25px;
  padding-top: 5px;
  display: inline-block;
  color: #444;
}

.filter-style3 h3.new_client img{ max-width:80px;
  
}

/*  추가 

.btn_s { display: inline-block; min-width:40px; height: 40px; padding: 0 10px; font-size:12px; font-weight:400; color: #fff; border-radius: 5px; opacity: 0.9; line-height: 40px; text-align: center; }
.btn_s i{ font-size:16px; font-weight:500;  }
.btn_s:hover { opacity: 1;  color: #fff;}
.btn_box_c { margin: 10px 0; text-align: center; }
.btn_box_r { margin: 10px 0; text-align: right; }
.btn { display: inline-block; min-width: 75px; height: 40px; padding: 0 10px; font-size: 14px; font-weight: 500; color: #fff; border-radius: 5px; opacity: 0.9; line-height: 40px; text-align: center; }
.btn:hover { opacity: 1;color: #fff; }
.bg_gray { background-color: #999; }
.bg_blue { background-color: #0DBECB; }

.bg_black { background-color: #333; }
.outline { border: 1px solid #333; color: #333; }

@media (max-width: 767px) {
.btn_s { display: inline-block; min-width:30px; height:30px; padding:5px; font-size:12px; font-weight:400; color: #fff; border-radius:2px; opacity: 0.9; line-height: 20px; text-align: center; }	
.btn_s i{ font-size:12px; font-weight:500;  }
}

*/

/* ==========================================================================
   반응형
========================================================================== */
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}



@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 769px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 769px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 769px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 769px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}


@media (min-width: 769px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}
@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}
.visible-print-inline {
  display: none !important;
}
@media print {
  .visible-print-inline {
    display: inline !important;
  }
}
.visible-print-inline-block {
  display: none !important;
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}
@media print {
  .hidden-print {
    display: none !important;
  }
}



