@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic&display=swap');
body {font-family: 'IBM Plex Sans Arabic', Arial, sans-serif;}
:root {
    --field-border: 1px solid #EEEEEE;
    --accent-color: var(--primary-color);
    --sidebar-color: #F1F1F1;
    --secondary-text: #aaaaaa;

    --radius-sm: .25em;
    --radius-md: .50em;
    }

    * { box-sizing: border-box; }

    .flex {
    display: flex;
    }
    .flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
    }
    .flex-fill {
    display: flex;
    flex: 1 1;
    }
    .flex-vertical {
    display: flex;
    flex-direction: column;
    }
    .flex-vertical-center {
    display: flex;
    align-items: center;
    }
    .btn.primary-btn{
      border-radius: .25rem;
      color: #fff;
      -webkit-clip-path: polygon(0 0,0 0,100% 0,100% 0,100% calc(100% - 15px),calc(100% - 15px) 100%,15px 100%,0 100%);
    clip-path: polygon(0 0,0 0,100% 0,100% 0,100% calc(100% - 15px),calc(100% - 15px) 100%,15px 100%,0 100%);
      transition: .2s .1s;
      background-image: linear-gradient(270deg,var(--primary-color-2),var(--primary-color));
    border: 0 solid;
      overflow: hidden;
  }
 .link-primary   {
    color:var(--primary-color);
 }
  .btn.primary-btn:hover {
      cursor: pointer;
      transition: all .3s ease-in;
      padding-right: 30px;
      padding-left: 30px;
    }
    .btn.scondary-btn{
      border-radius: .25rem;
      color: #fff;
      -webkit-clip-path: polygon(0 0,0 0,100% 0,100% 0,100% calc(100% - 15px),calc(100% - 15px) 100%,15px 100%,0 100%);
      clip-path: polygon(0 0,0 0,100% 0,100% 0,100% calc(100% - 15px),calc(100% - 15px) 100%,15px 100%,0 100%);
      transition: .2s .1s;
      background-image: linear-gradient(270deg,#a2a2a2,#c4c4c4);
      border: 0 solid;
      overflow: hidden;
  }
  .btn.scondary-btn:hover {
      cursor: pointer;
      transition: all .3s ease-in;
      padding-right: 30px;
      padding-left: 30px;
    }
    .btn-apple-pay {
      background-color: #000;
      color: #ffffff;
      padding: 10px 15px;
      text-align: center;
      border-radius: 5px;
      border: none;
      cursor: pointer;
      transition: .6s ease;
      /* display: flex; */
      /* justify-content: center; */
      /* align-items: baseline; */
    }

    .btn-apple-pay  img{
      height: 20px;
      margin-inline: 10px;
    }

    .btn-apple-pay:hover {
      color: #fff;
      box-shadow: 1px 1px 5px 5px rgb(0, 0, 0 , 10%);
      font-weight: 800;
      transform: translateY(1px);
    }

    .flex-between {
    display: flex;
    justify-content: space-between;
    }
    .p-sm  { padding: .5em; }
    .pl-sm { padding-left: .5em; }
    .pr-sm { padding-right: .5em; }
    .pb-sm { padding-bottom: .5em; }
    .p-md  { padding: 1em; }
    .pb-md { padding-bottom: 1em; }
    .p-lg  { padding: 2em; }
    .m-md  { margin: 1em; }
    .size-md { font-size: .85em; }
    .size-lg { font-size: 1.5em; }
    .size-xl { font-size: 2em; }
    .half-width { width: 50%; }

    .pointer { cursor: pointer; }
    .uppercase{ text-transform: uppercase; }
    .ellipsis { text-overflow: ellipsis; overflow: hidden; }

    .f-main-color { color: ; }
    .f-secondary-color { color: var(--secondary-text); }
    .b-main-color { background: var(--primary-color); }
    .numbers::-webkit-outer-spin-button,
    .numbers::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
    }

    body {
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    }

    .screen {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    background: #E3F2FD;
    }

    .popup {
    /* position: relative; */
    /* width: 50em; */
    /* height: 35em; */
    /* background: #FFFFFF; */
    /* overflow-x: hidden; */
    /* overflow-y: auto; */
    }
    .popup .close-btn {
    position: absolute;
    right: 0;
    top: 0;
    background: #FCFCFC;
    border-bottom-left-radius: var(--radius-sm);
    transition: background-color .25s ease-in-out;
    }
    .popup .close-btn:hover {
    background: #EF5350;
    }

    .sidebar {
    /* width: 16.5em; */
    /* padding-left: 2em; */
    padding-top: 5em;
    }

    .header .title {
    font-size: 1.2em;
    }
    .header .title span {
    font-weight: 300;
    }

    .card-data > div {
    padding-bottom: 1.5em;
    }
    .card-data > div:first-child {
    padding-top: 1.5em;
    }

    .card-property-title {
    display: flex;
    flex-direction: column;
    flex: 1 1;
    margin-right: 0.5em;
    }
    .card-property-title strong {
    padding-bottom: .5em;
    font-size: .85em;
    }
    .card-property-title span {
    color: var(--secondary-text);
    font-size: .75em;
    }
    .card-property-value {
    flex: 1 1;
    }

    .card-number {
    background: #fafafa;
    border: var(--field-border);
    border-radius: var(--radius-md);
    padding: .5em 1em;
    }
    .card-number-field * { line-height: 1; margin: 0; padding: 0;}
    .card-number-field input {
    width: 3em;
    height: 100%;
    padding: .5em 0;
    margin: 0 .75em;
    border: none;
    color: #888888;
    background: transparent;
    /* text-align: center; */
    font-family: inherit;
    font-weight: 500;
    }

    .timer span {
    background: #f29108;
    color: #FFFFFF;
    width: 1.2em;
    padding: 4px 0;
    display: inline-block;
    text-align: center;
    border-radius: var(--radius-sm);
    }
    .timer span+span {
    margin-left: 2px;
    }
    .timer em {
    font-style: normal;
    }

    .action button {
    padding: 1.1em;
    width: 100%;
    height: 100%;
    font-weight: 600;
    font-size: 1em;
    color: #FFFFFF;
    border: none;
    border-radius: var(--radius-md);
    transition: background-color .2s ease-in-out;
    }
    .action button:hover {
    background: #2979FF;
    }

    .input-container {
    position: relative;
    display: flex;
    align-items: center;
    height: 3em;
    overflow: hidden;
    border: var(--field-border);
    border-radius: var(--radius-md);
    }
    .input-container input,
    .input-container i {
    line-height: 1;
    }
    .input-container input {
    flex: 1 1;
    height: 100%;
    width: 100%;
    text-align: center;
    border: none;
    color: #888888;
    border-radius: var(--radius-md);
    font-family: inherit;
    /* font-weight: 800; */
    font-size: .85em;
    }
    .input-container input:focus {
    background: #E3F2FD;
    color: #283593;
    }
    .input-container input::placeholder {
    color: #ddd;
    }
    .input-container input::-webkit-outer-spin-button,
    .input-container input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
    }
    .input-container i {
    position: absolute;
    right: 0.5em;
    }

    .purchase-section {
    position: relative;
    overflow: visible;
    padding: 0 1em 1em 1em;
    background: var(--sidebar-color);
    border-top-left-radius: .8em;
    border-top-right-radius: .8em;
    }
    .purchase-section:before {
    content: '';
    position: absolute;
    width: 1.6em;
    height: 1.6em;
    border-radius: 50%;
    left: -0.8em;
    bottom: -0.8em;
    background: #FFFFFF;
    }
    .purchase-section:after {
    content: '';
    position: absolute;
    width: 1.6em;
    height: 1.6em;
    border-radius: 50%;
    right: -0.8em;
    bottom: -0.8em;
    background: #FFFFFF;
    }

    .card-mockup {
    position: relative;
    margin: -5em 1em 1.5em 1em;
    padding: 1.5em 1.2em;
    height: 15em;
    border-radius: var(--radius-md);
    background: #FFFFFF;
    box-shadow: 0 .5em 1em .125em rgba(0,0,0, 0.1);
    }
    .card-mockup:after {
    content: '';
    position: absolute;
    width: 25%;
    top: -.2em;
    left: 37.5%;
    height: .2em;
    background: var(--primary-color);
    border-top-left-radius: .2em;
    border-top-right-radius: .2em;
    }
    .card-mockup:before {
    content: '';
    position: absolute;
    top: 0;
    width: 25%;
    left: 37.5%;
    height: 0.5em;
    background: #2962ff36;
    border-bottom-left-radius: 0.2em;
    border-bottom-right-radius: 0.2em;
    box-shadow: 0 2px 15px 5px #2962ff4d;
    }

    .purchase-props {
    margin: 0;
    padding: 0;
    font-size: .8em;
    width: 100%;
    }
    .purchase-props li {
    width: 100%;
    line-height: 2.5;
    }
    .purchase-props li span {
    color: var(--secondary-text);
    font-weight: 600;
    }

    .separation-line {
    border-top: 1px dashed #aaa;
    margin: 0 .8em;
    }

    .total-section {
    position: relative;
    overflow: hidden;

    padding: 1em;
    background: var(--sidebar-color);
    border-bottom-left-radius: .8em;
    border-bottom-right-radius: .8em;
    }
    .total-section:before {
    content: '';
    position: absolute;
    width: 1.6em;
    height: 1.6em;
    border-radius: 50%;
    left: -0.8em;
    top: -0.8em;
    background: #FFFFFF;
    }
    .total-section:after {
    content: '';
    position: absolute;
    width: 1.6em;
    height: 1.6em;
    border-radius: 50%;
    right: -0.8em;
    top: -0.8em;
    background: #FFFFFF;
    }
    .total-label {
    font-size: 0.8em;
    padding-bottom: 0.5em;
    }
    .total-section strong {
    font-size: 1.5em;
    font-weight: 800;
    }
    .total-section small {
    font-weight: 600;
    }




    /* TEST */
    .card-custom-category {
        --background: #fff;
        --background-checkbox: var(--primary-color);
        --background-image: #fff, rgba(0, 107, 175, 0.2);
        --text-color: #666;
        --text-headline: #000;
        --card-shadow: var(--primary-color);
        --card-height: 100%;
        --card-width: 100%;
        --card-radius: 12px;
        --header-height: 80px;
        --blend-mode: overlay;
        --transition: 0.15s;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        border-radius: 10px;
      }
      .card:nth-child(odd) .card__body-cover-image {
      }
      .card:nth-child(even) .card__body-cover-image {
        --x-y1: 100% 85%;
        --x-y2: 73% 93%;
        --x-y3: 25% 85%;
        --x-y4: 0% 90%;
      }
      .card__input {
        position: absolute;
        display: block;
        outline: none;
        border: none;
        background: none;
        padding: 0;
        margin: 0;
        -webkit-appearance: none;
        z-index: 99999999999;
      }
      .card__input:checked ~ .card__body {
        box-shadow: 0 0 0  3px var(
        --card-shadow) !important;
      }
      .card__input:checked ~ .card__body .card__body-cover-checkbox {
        --check-bg: var(--background-checkbox);
        --check-border: #fff;
        --check-scale: 1;
        --check-opacity: 1;
      }
      .card__input:checked ~ .card__body .card__body-cover-checkbox--svg {
        --stroke-color: #fff;
        --stroke-dashoffset: 0;
      }
      .card__input:checked ~ .card__body .card__body-cover:after {
        --opacity-bg: 0;
      }
      .card__input:checked ~ .card__body .card__body-cover-image {
        --filter-bg: grayscale(0);
      }
      .card__input:disabled ~ .card__body {
        cursor: not-allowed;
        opacity: 0.5;
      }
      .card__input:disabled ~ .card__body:active {
        --scale: 1;
      }
      .card__body {
        border-radius: var(--card-radius);
        /* overflow: hidden; */
        position: relative;
        cursor: pointer;
        /* box-shadow: 0 4px 4px 0 rgb(0 0 0 / 10%); */
        transition: transform var(--transition), box-shadow var(--transition);
        transform: scale(var(--scale, 1)) translateZ(0);
        background: var(--background);
      }
      .card__body:active {
        --scale: 0.96;
      }
      .card__body-cover {
        --c-border: var(
        --card-radius) var(--card-radius) 0 0;
        --c-width: 100%;
        --c-height: 100%;
        max-width: 150px;
        position: relative;
        overflow: hidden;
      }
      .card__body-cover:after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: var(--c-width);
        height: var(--c-height);
        border-radius: var(--c-border);
        background: linear-gradient(to bottom right, var(--background-image));
        mix-blend-mode: var(--blend-mode);
        opacity: var(--opacity-bg, 1);
        transition: opacity var(--transition) linear;
      }
      .card__body-cover-image {
        width: var(--c-width);
        height: var(--c-height);
        -o-object-fit: cover;
        object-fit: cover;
        border-radius: 0;
        filter: var(--filter-bg, grayscale(1));
        border-end-start-radius: 10px;
        border-start-start-radius: 10px;
      }
      .card__body-cover-checkbox {
        background: var(--check-bg, var(--background-checkbox));
        border: 2px solid var(--check-border, #fff);
        position: absolute;
        right: 10px;
        top: 10px;
        z-index: 1;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        opacity: var(--check-opacity, 0);
        transition: transform var(--transition), opacity calc(var(--transition) * 1.2) linear;
        transform: scale(var(--check-scale, 0));
      }
      .card__body-cover-checkbox--svg {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        width: 13px;
        height: 11px;
        display: inline-block;
        vertical-align: top;
        fill: none;
        stroke: var(--stroke-color, #fff);
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-dasharray: 16px;
        stroke-dashoffset: var(--stroke-dashoffset, 16px);
        transition: stroke-dashoffset 0.4s ease var(--transition);
      }
      .card__body-header {
        height: var(--header-height);
        background: var(--background);
        padding: 0 10px 10px 10px;
        /* height: 0; */
      }
      .card__body-header-title {
        color: var(--text-headline);
        font-weight: 700;
        margin-bottom: 8px;
      }
      .card__body-header-subtitle {
        color: var(--text-color);
        font-weight: 500;
        font-size: 13px;
      }

      html {
        box-sizing: border-box;
        -webkit-font-smoothing: antialiased;
      }

      * {
        box-sizing: inherit;
      }
      *:after {
        box-sizing: inherit;
      }


      body .socials {
        position: fixed;
        display: flex;
        right: 20px;
        bottom: 20px;
      }
      body .socials > a {
        display: block;
        height: 28px;
        margin-left: 15px;
      }
      body .socials > a.dribbble img {
        height: 28px;
      }
      body .socials > a.twitter svg {
        width: 32px;
        height: 32px;
        fill: #1da1f2;
      }
      body .grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 1rem;
      }
      .number-ticket{
        display: none;
      }
    .event-tickets input input[type="number"] {
        border-color: var(--base-color) !important;
        border-radius: 5px;
        padding: 10px 8px;
    }
      @media screen and (max-width:780px){
          body .grid {
          grid-template: none;
      }
      }
      .event-tickets {
        position: absolute;
        left: 5%;
        top: 50%;
        transform: translateY(-50%);
        width: 150px;
    }
@media screen and (max-width:770px){
    .event-tickets {
        position: absolute;
        left: 5%;
        bottom: 60%;
        transform: translateY(-60%);
        width: 150px;
    }
}
    [type="number"] {
        width: 50%;
    }

    @media screen and (max-width:768px){
      .card__body-cover {
           width: 100%;
           max-width: 100%;
   }
       img.card__body-cover-image {
           border-radius: 10px;
           width: 100%;
           max-height: 250px;
       }
       .card__body {
           display: flex;
           flex-direction: column;
   }
       .card__body-header {
           width: 100% !important;
       }
       .event-tickets {
        top: 82%;
    }
    .flex-mobile {
      flex-direction: column-reverse;
  }

  .flex-mobile > div {
      margin-bottom: 50px;
  }

   }
   .text-max-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: line-clamp 0.3s ease-in-out;

}

.card__input:checked + .card__body .text-max-2 {
    -webkit-line-clamp: unset;
    line-clamp: unset;
    transition: line-clamp 0.3s ease-in-out;
}

.event-tickets input[type="number"] {
  border: 1px solid var(--primary-color);
  border-radius: 5px;
  margin: 0;
}
.event-tickets input[type="number"]:focus{
  border: 1px solid var(--primary-color) !important;
}


.texter{
    color: white;
    border-left: 2px solid var(--primary-color);
    font-size: 55px;
    color: var(--primary-color);
    padding: 5px;
}
.typed-cursor.typed-cursor--blink {
  display:none !important;
}

span.typed-cursor {
  display:none !important;
}

@media only screen and (max-width: 500px) {
  .btn .primary-btn,.btn .scondary-btn {
      padding: 5px 5px !important;
  }
}
