/* 
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 */

:root {
  --primary: #08397c;
  --secondary: #ee299d;
  --table-border-color: #e6e9f5;
  --secondary-opacity: rgb(238, 41, 157, 0.2);
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.justify-center {
  justify-content: center;
}

.items-center {
  align-items: center;
}

.text-center {
  text-align: center;
}

.width-small {
  width: 25%;
}

.empty-column-head {
  height: 190px;
}

.cell {
  height: 80px;
}

.area-name {
  padding: 12px;
  color: var(--primary);
}

.border {
  border: 1px solid var(--table-border-color);
}

.border-top {
  border-top: 1px solid var(--table-border-color);
}

.border-right {
  border-right: 1px solid var(--table-border-color);
}

.border-bottom {
  border-bottom: 1px solid var(--table-border-color);
}

.border-left {
  border-left: 1px solid var(--table-border-color);
}

.bg-primary {
  background: var(--primary);
}

.bg-secondary {
  background: var(--secondary);
}

.bg-secondary-opacity {
  background: var(--secondary-opacity);
}

.bg-border {
  background: var(--table-border-color);
}

.white-text {
  color: white;
}

.column-head {
  padding: 28px;
}

.column-name {
  font-size: 32px;
  font-weight: 700;
  line-height: 52px;
}

.prices {
  padding: 10px;
}

.divider {
  display: block;
  position: relative;
  height: 60px;
  width: 1px;
  margin: 0 48px;
}

.divider-prices:before {
  position: absolute;
  content: attr(data-ceiling);
  left: 48px;
  top: 50%;
  transform: translateY(-50%);
}

.divider-prices:after {
  position: absolute;
  content: attr(data-no-ceiling);
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
}

.pseudo-table {
  font-size: 20px;
  font-weight: 700;
}

.css-carousel {
  width: 100%;
}

.css-carousel > div {
  width: calc(100% / 1);
}

@media (max-width: 1399px) {
  .css-carousel {
    max-width: 100%;
    display: flex;
    flex-wrap: nowrap;
    overflow: auto;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }

  .css-carousel > div {
    width: 100%;
    flex-shrink: 0;
    scroll-snap-align: start;
  }
}

@media (max-width: 767px) {
  .pseudo-table {
    font-size: 12px;
    font-weight: 700;
  }

  .width-small {
    width: 60%;
  }

  .empty-column-head {
    height: 125px;
  }

  .cell {
    height: 50px;
  }

  .column-name {
    font-size: 24px;
    line-height: 44px;
  }

  .column-head {
    padding: 14px;
  }

  .divider-prices:before {
    left: 15px;
  }

  .divider-prices:after {
    right: 15px;
  }

  .divider {
    height: 30px;
    margin: 0 15px;
  }
}
