/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

.hide-header header{
  display: none;
}

.plo-service-header {
  grid-template-columns: 50% 20% 30%;  
  display: grid;
  width: 100%;
  margin-bottom: 20px;

  .header-item{
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 700;
    font-size: 16px;
    height: 40px;
    color: #022641;
  }

  .header-item:last-child{
    text-align: right;
  }

  @media (max-width: 767px) {
    display: none;
  }
}


.plo-service{
  grid-template-columns: 50% 20% 30%;
  grid-column-gap: 0 ;
  display: grid;

  .item.total-price{
    min-height: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
  }

  @media (max-width: 1024px) {
    grid-template-columns: 1fr; /* Make everything full width initially */

    /* Target the first child ("item description") for full width */
    .item.description {
      grid-column: span 1; /* Ensure it occupies the entire grid row */
    }

    
  }

  /* Responsive behavior for mobile devices */
  @media (max-width: 767px) { /* Adjust the breakpoint as needed */
    display: flex; /* Switch to flexbox for mobile */
    flex-wrap: wrap; /* Allow items to wrap onto multiple lines */
	
    .item {
     /* flex: 1 0 33.33%; /* Make each item take up 1/3 of available space */
      font-size: 14px;
    }
    /* Target .item.description for full width on mobile */
    .item.description {
      flex: 1 1 100%; /* Make it flexible, with a minimum and preferred width of 100% */
      margin-bottom: 20px;
      padding-right: 0;
    }
    .item.unit-price {
      width: 30%;
    }

    .item.quantity {
      width: 20%;
      text-align: center;
    }
    .item.total-price {
        width: 50%;
        text-align: right;
    }
    .item.total-price .discount-info{
      font-size: 10px;
    }

    .item strong{
      font-size: 16px;
    }
  }
}

.plo-service:not(:last-child) {
  border-bottom: 1px solid #cccccc;
  margin-bottom: 20px;
  padding-bottom: 20px;
}


.plo-service .description{
  color: #022641;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  padding-right: 10px;
}

.plo-service .description p{
  font-family: 'Proxima Nova', sans-serif;
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 14px;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
	.plo-service .description p {
		font-size: 12px !important;
	}
}

.plo-service .description p:last-child {
	margin-bottom: 0;
}

.plo-service:last-child{
  margin-bottom: 0px;
}

.plo-service .discount-before-price{
  color: #022641;
  white-space: nowrap;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  text-decoration: line-through;
  line-height: 12px;
  font-family: 'Proxima Nova', sans-serif;
}

.plo-service .discount-value{
  color: #02cbff;
  font-weight: 800;
  white-space: nowrap;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 12px;
  font-family: 'Proxima Nova', sans-serif;
}

#plo-pop-up {
  border-radius: 5px;
  background: #fff;
}

#plo-pop-up div{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 10px;
  position: relative;
  z-index: 10;
  min-width: 190px;
  max-width: 524px;
  min-height: 100px;  
  text-align: center;
}

#plo-pop-up h3{
  font-size: 32px;
  font-weight: normal;
  font-family: 'Proxima Nova', sans-serif;
}

#plo-pop-up p{
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: rgba(71, 83, 93, 0.85);
  padding: 0 32px;
  font-family: 'Proxima Nova', sans-serif;
}

#plo-pop-up p a {
	outline: none;
}

#plo-pop-up .action{
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: #022641;
  color: #FFFFFF;
  display: flex;  
  justify-content: center;
  padding: 15px 60px;
  border-radius: 4px;;
  outline: none;
}

#plo-pop-up .action:hover {
  background: #00ccff;
}

button.fancybox-close-small{
  display: none;
}

@media screen and (max-width: 767px) {
	#plo-pop-up {
		margin: 0 20px;
		padding: 40px 20px;
	}
}


.hide-1{
  display: none;
}


.plo_password_form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100vh;
  position: relative;
  align-items: center;

  p{
    justify-content: center;
    text-align: center;
  }

  input[name="post_password"]{
    margin-top: 10px;
  }

  input[type="submit"]{
    background-color: #022641;
    font-family: "Proxima Nova", Sans-serif;
    border: 0;
    padding: 11px 20px;
    margin-left: 10px;
  }

  @media (max-width: 767px){
    padding: 0 20px;

    p{
      flex-direction: column;
      align-items: center;
    }

    input[type="submit"]{
      margin-top: 10px;
      margin-left: 0;
    }
  }
}

body.proposal-approved .hide-on-approved{
  display: none;
}