@charset "UTF-8";

/* Global Style */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
}

:root {
  --nav-color-hover: #82a1ad;
  --water-blue-color: #f0f4f6;
  --faded-gray-color: #b7b7b7;
  --gray-color: #96959c;
  --site-green: #6ab165;
  --dark-green: #59a453;
  --black-green: #244a35;
}

#root.init * {
  visibility: hidden;
}

/*
img, #logo {
  visibility: hidden;
}
*/


.olderBrowser {
  display: none !important;
}

noscript, .oudated_browser {
  visibility: visible !important;
}

noscript, #olderBrowser {	
  display: block;
  width: 95%;
  margin: 3% auto;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

#logo {
  display: block;
  background-image: url('../img/logo.png');
  background-repeat: no-repeat;
  background-size: 150px 150px;
  width: 150px;
  height: 150px;
}

.centered-content-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faded-gray, .form-control::placeholder {
  color: var(--faded-gray-color) !important;
}

.green-btn {	
  padding: 14px;
  background-color: var(--site-green) !important; 
  border: var(--site-green) !important; 
  border-radius: 0; 
}

.green-btn:hover {
  background-color: var(--dark-green) !important;
}

.border-empty-required {
  outline-width: 1px;
  outline-style: solid;
  outline-color: #ff0000;
}

/* Navbar */

.navbar {
  background-color: var(--bs-white);
}

.custom-margin-nav {
  margin-left: 3%;
  margin-right: 3%;
}

#navbarNav .nav-item, #main_nav .nav-item {
  margin-left: 1.3rem;
  margin-right: 1.3rem;
}

.nav-item a {
  font-size: 1.2rem;
  color: #7e7d89 !important;
}

.nav-item {
  display: flex;
/*  align-items: center; */ 
  flex-direction: column;
}

.non-small-device {
  display: none !important;
}

.nav-item .active, .nav-item a:hover {
  /* color: #82a1ad !important; */
  color: var(--nav-color-hover) !important;
}

#phone-nav {
  display: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(130,161,173, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler-icon:hover {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(41,53,58, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); 
}

.navbar-toggler-icon-close {
  display: block;	
  background-image: url("/img/close-nav.png");
  background-repeat: no-repeat;
  background-size: 30px 30px;
  width: 30px;
  height: 30px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

[data-bs-target="#main_nav"] {
  border: none;
}

#main_nav .dropdown-toggle::after {
  display: initial;
}

/* Nav arrow */
.arrow {
  border: solid black;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  margin-bottom: 7px;
}

.up {
  transform: rotate(-135deg);
}

.down {
  transform: rotate(45deg);
}

.nav-link-list {
  display: flex;
  justify-content: space-between;
  flex-basis: center;
  align-content: center;
  align-items: center;
  min-width: 150px;
}

.text-wrap {
  word-wrap: break-word;
  white-space: normal;
}

.triangle-up {
  display: none;
  position: absolute;
  top: -10px;
  left: 50%;
  right: 50%;
  transform: translate(-50%, 0);
  width: 0;
  height: 0;
  border-left: 12px solid transparent; 
  border-right: 12px solid transparent;
  border-bottom: 12px solid var(--water-blue-color);
}

.navbar-collapse {
  height: 100vh;
}

.accordion {
  --bs-accordion-btn-padding-x: 0rem;
  --bs-accordion-btn-padding-y: 0rem;
  width: 250px;
}

.accordion-button {
  pointer-events: none;
  color: #fff;
}

.accordion-button:not(.collapsed)::after {
}

.accordion-button:not(.collapsed) {
  background-color: #fff;
  color: #fff;
  box-shadow: none !important;
}

.accordion-button::after {
  pointer-events: all;
}

.accordion-button:focus {
  border: none !important;
  box-shadow: none !important;
}

.accordion-header {
  display: flex;
  padding: 0px;
}

.accordion-item {
  border: none;
}

.accordion-body {
  padding: 0px;
}

/*
.accordion-scroll {
  max-height: 55vh !important;
  overflow: scroll;
}
*/

.accordition-ul-list {
  max-height: 55vh !important;
  overflow: scroll;	
  list-style-type: none;
  padding: 0px;
  background-color: var(--water-blue-color) !important;
}

.accordition-ul-list li {
  padding: 0.5rem;
}	

.accordition-ul-list a {
  font-size: 1.3rem !important;
}

/* End Navbar */

/* Home page */

.home-content-bg {
  background-color: #f4f9ed !important
}


/* Home Services section */

#section-services > div {
  display: flex;
  justify-content: center;
}

#section-services img, .service-summary {
  max-width: 200px;
}

.service-summary > p, #home-despre > p {
  color: var(--gray-color) !important;
}

.slot-service .btn {
  max-width: 180px;
  margin: 2.1rem 0;
}

/* End Home Services section */

/* End Home page */

/* PAGES */

.template-flowers {
  background-image: url("/img/bg-flowers.png");   
  background-repeat: repeat;
}

.wrapper {
  width: 90%;
}

/* Preturi */

.preturi-table th {
  background-color: #a4d49d;
  color: #666572;
}

.preturi-table th:nth-child(2), .preturi-table td:nth-child(2) {
  text-align: end;
}

.table-label {
  background-color: rgba(0, 0, 0, 0) !important;
  padding-left: 0px !important;
}

/* Servicii */

#service-content {
  position: static; 
}

#right_sidebar {
  position: static;
}

#service-content .img-fluid {
  /* max-width: 200px; */
  max-width: none;	
  height: 100%;
  margin-bottom: 20px;
}

#service-content p {
  text-align: justify;
  color: #96959c;
}

#right_sidebar ul {
  list-style-type: none;
}

#right_sidebar li {
  display: flex;
  padding-bottom: 10px;	
  min-width: 220px;
}

#right_sidebar li::before {
  position: relative;
  top: -4px;	
  content:'\25B7';
  margin-right: 8px;
  height: 0px;
}

#right_sidebar a {
  text-decoration: none;	
  text-transform: uppercase;
  font-size: 13px;
  color: #7e7d89;
}

/* */ 

/*
 * TO DO
.preturi-table td:hover, .preturi-table ~ td:hover {
  background-color: #e5e5e5;
}
*/

/* End preturi */

/* Programare  */

#picktime {
  width: 100%;
  height: 1800px;
}

#picktime > embed {
  width: 100%; 
  height: 100%;
}

/* End Programare */

/* Policy  */

#policy p, #policy li{
  font-size: 20px;
}

#policy li {
  margin-bottom: 5%;
  margin-left: 25px;
  padding-left: 10px;
}

/* End Policy */


/* Contact */
#map_contact {  
  width: 100%;
  min-height: 450px;	
}

#map {
  height: 100%;
  min-height: 450px;
}

#contact .form-control {
  background-color: var(--water-blue-color) !important;	
  border-radius: 0;
  padding: 0.7rem;
}

#contact .form-control:focus {
  border-color: #000;
  box-shadow: none;
}	

textarea {
  resize: none;
}
/* End Contact */

/* End Pages*/

/* Template Right Sidebar */

#container-content p {
  text-align: justify;
  color: #96959c;
}

#inner-right-sidebar ul {
  list-style-type: none;
}

#inner-right-sidebar li {
  display: flex;
  padding-bottom: 10px;	
  min-width: 220px;
}

#inner-right-sidebar li::before {
  position: relative;
  top: -4px;	
  content:'\25B7';
  margin-right: 8px;
  height: 0px;
}

#inner-right-sidebar a {
  text-decoration: none;	
  text-transform: uppercase;
  font-size: 13px;
  color: #7e7d89;
}

.green-btn .bi {
  padding-right: 0.7rem;
}

#container-content .img-fluid {
  max-width: none;
  height: 100%;
  margin-bottom: 20px;
}

/* End Template Right Sidebar */

/* Footer */

footer {
  width: 100%;	
  background-color: #29353a;
  color: var(--bs-white);
}

#footer_details {
  padding: 40px 0;
  background-color: var(--black-green);
}

#copyright {
  padding: 10px 0;
}

footer i {
  font-size: 25px;
}

.footer_links, .footer_links i, #footer-policy a {
  color: #fff;
  text-decoration: none;
}

.small-link-footer {
  font-size: 13px;
}

#footer-policy {
  background-color: var(--black-green);
}

/* End Footer */



/* XX-Small(global) end */ 

/* Small(sm)  */
@media (min-width: 320px) {
  /* , #service-content .img-fluid */	 
  #section-services img, .service-summary {
     max-width: 300px;
  } 
}

/* X-Small(global) end */ 

/* Small(sm)  */
@media (min-width: 576px) {
  #section-services img, .service-summary {
    max-width: 400px;
  } 

  /* Programare  */

  #picktime {
    height: 1700px;
  }
}

/* Medium(md)  */
@media (min-width: 768px) {
  #section-services img, .service-summary {
    max-width: 200px;
  } 

  .serv-container > h1 {
    max-width: 66%;
  }

  /* Policy */
  #policy li {
    margin-bottom: 3%;
  }
}

/* Large(lg) */
@media (min-width: 992px) { 
	
   /* Navbar */	
  .navbar .nav-item .dropdown-menu{ display: none; }
  .navbar .nav-item:hover .nav-link{   }
  .navbar .nav-item:hover .dropdown-menu{ display: block; }
  .navbar .nav-item .dropdown-menu{ margin-top: 0; }

  .navbar .nav-item {
    position: relative;
    /* align-items: start; */
  }

  .navbar .nav-item .dropdown-menu {
    position: absolute;
    top: 40px;
    left: 50%;
    right: 50%;
    min-width: 13rem;
    max-height: 80vh !important;
    overflow: auto;
    transform: translate(-50%, 0);
    background-color: var(--water-blue-color) !important; 
    border: none;
    border-radius: 0;
    box-shadow: 1px 1px #ccc;
    padding: 2rem 0;
  }

  #dropdown-servicii {
    min-width: 16rem !important; 
  }

  .navbar .nav-item .dropdown-menu li {
    text-align: center;
    margin-bottom: 10px;
  }

  .navbar .nav-item .dropdown-menu li a:hover {
    background-color: var(--nav-color-hover) !important; 
    color: var(--water-blue-color) !important; 
  }	  

  .navbar .nav-item .dropdown-menu li:last-child {
    margin-bottom: 0px;
  }

  .navbar .nav-item .dropdown-menu li a {
    font-size: 1.3rem;
  }	 
  
  .triangle-up {
    display: initial;  	  
  } 

  .navbar-nav .arrow {
    display: none;
  }

  #main_nav .dropdown-toggle::after {
    display: none;  
  }

  .nav-link-list {
    /* display: inline-block */ ;
    min-width: 0px;
  }
  
  .navbar-collapse {
    height: auto;
  }

  .accordion {
    display: none;
  }
  
  .non-small-device {
    display: initial !important;
  }

  #nav-servicii-md {
    width: 280px;
  }
  
  /* End Navbar */

  /* Home Services */
  #section-services img, .service-summary {
    max-width: 300px;
  }

  /* Preturi + Template */
  .template-flowers .wrapper {
    width: 85%;
  }

  /* Programare  */

  #picktime {
    height: 1600px;
  }

  /* Policy */
  #policy li {
    margin-bottom: 1%;
  }

}

/* Extra large(xl) */
@media (min-width: 1200px)
{ 
  #phone-nav {
    display: initial;
  }

  /* Home services */

  #section-services img, .service-summary {
      max-width: 370px;
  }

  /* Servicii  */
  #service-content {
    position: relative;
  }

  #right_sidebar {
    position: absolute;
    top: -7rem;
    right: 0;
  }

   #service-content .img-fluid {
     max-width: 365px;
   }

  /* Template Right Sidebar */
 
  #inner-right-sidebar {
    /* width: 100%;
    padding-left: 35%; */
  } 
  
  #inner-right-sidebar li {
    display: flex;
    padding-bottom: 10px;
    min-width: 220px;
  }

  #container-content .img-fluid {
    max-width: 365px;
  }

  /* End Sidebar */

}

/* Extra extra large(xxl) */
@media (min-width: 1400px) { 

  /* Home services */
  #section-services img, .service-summary {
      max-width: 400px;
  }
}
