div.profile-wrapper {
  min-height: calc(100vh - 80px);
  background: #e9e2db;
  display: flex;
  justify-content: center;
  padding-top: 50px;
  overflow: hidden;
  width: 100%;


  .k-grid .k-grid-header {
    display: none;
  }

  div.content-wrapper {
    width: min(800px, 100%);
    background: white;
    display: flex;
    flex-direction: column;

    div.header {
      width: 100%;
      background: white;
      display: flex;
      align-items: center;
      padding: 20px 20px;
      border-bottom: 1px solid rgba(204, 204, 204, 0.3);
      justify-content: space-between;

      h1 {
        font-size: 1.6rem;
        text-transform: uppercase;
      }
    }

  }

}


div.general-list {
  height: 600px;
  background: green;
}


.summary-pay-btn {
  height: 45px;
  background: var(--primary-gradient);
  font-family: "Conso";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: var(--white);
  transition: 0.5s;
  white-space: nowrap;
  padding: 0 20px;
}

div.edit-box {
  button:nth-child(2) {
    display: none;
  }

  &.edit-state {
    button:nth-child(1) {
      display: none;
    }

    button:nth-child(2) {
      display: initial;
    }
  }

}

.ceges-header {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.form-input {
  box-sizing: border-box !important;
  border: 1px solid #CCCCCC;
  width: 100%;
  padding: 3px 10px;
}

.k-calendar-md .k-calendar-monthview, .k-calendar-md.k-month-calendar {
  padding: 0 !important;
}

.k-calendar .k-calendar-view {
  width: auto !important;
  height: 17em;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.k-switch {
  width: 80px !important;
  //height: 30px;
  padding: 0 !important;

  * {
    border-color: transparent !important;
    outline: none !important;
    box-sizing: border-box !important;
  }


  .k-switch-thumb {
    //background: red !important;
  }
}

.k-switch-on .k-switch-track {
  //background: rgb(27, 62, 61) !important;
}

form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;

  fieldset {
    border: 1px solid #CCCCCC;
    padding: 0 10px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;

    legend {
      padding: 5px;
    }
  }

  .hide-other-box {
    display: flex;
    flex-direction: column;
    gap: 10px;

    &.show {
      > div:last-child {
        display: initial;
      }
    }

    > div:last-child {
      display: none;
    }
  }
}

.mb-3 {
  display: flex;
  flex-direction: column;
  gap: 5px;

  input:not([type="checkbox"]),
  textarea {
    border: 1px solid #CCCCCC;
    padding: 5px 10px;
    width: 100%;
  }

  textarea {
    height: 180px;
  }

  .form-check {
    display: flex;
    gap: 5px;
  }

  .invalid-feedback {
    display: none;
  }
}

tr.hidden-row {
  display: none;
}

.unnepi-popup {
  .card {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: auto;

    .card-header, .card-footer {
      height: 40px;
      display: flex;
      align-items: center;
      padding: 0 20px;
      border-bottom: 1px solid #CCCCCC;
      font-weight: bold;
    }

    .card-body {
      flex-grow: 1;
    }

    .card-footer {
      border-bottom: none;
      justify-content: flex-end;
      border-top: 1px solid #CCCCCC;
    }
  }
}


div.kedvenc-etelek-list {
  width: 100%;


  div.k-listview-content {
    padding: 10px;
    position: relative;
    inset: 0;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 350px));
    justify-content: center;
  }
}

div.kedvenc-etel-item {
  background: white;
  border: 1px solid #CCCCCC;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;

  h1 {
    font-size: 1.2rem;
  }

  div.datumok-wrapper{
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-top: 10px;
  }

  div.datumok-box {
    display: flex;
    justify-content: space-between;
    transition: 0.5s;
    flex-direction: column;
    gap: 20px;

    > div {
      display: flex;
      justify-content: space-between;

      span {
        font-size: 1.2rem;
        i {
          transition: 0.5s;
          font-size: 1.6rem;
        }
        &:hover{
          i{
            color: blue;
          }
        }
      }
    }
  }

  div.image-box {
    width: 100%;
    height: 200px;
    background: white;
    position: relative;

    div.remove-box {
      position: absolute;
      width: 40px;
      height: 40px;
      background: white;
      top: 0;
      right: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;

      i {
        font-size: 2rem;
      }
    }

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  div.content-box {
    background: white;
  }

  div.content-box, div.heti-etlap-box {
    padding: 10px;
  }
}

div.empty-box{
  width: 100%;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mb-3{
  position: relative;
}

.view{
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  position: absolute;
  right: 0px;
  bottom: 0px;
  cursor: pointer;
  border-radius: 0px;
  transition: background 0.3s;
  
  &:hover {
    background: #333 !important;
  }
}

