:root {
  --timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  --animation-duration: 250ms;
}

html {
  box-sizing: border-box;
}

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

ul{
  padding: 0px;
  margin: 0;
}
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  /* background-color: #fff; */
  color: #212121;
  position: relative;
  background-image: url('../img/back-grey.png');
  background-repeat:no-repeat;
  -webkit-background-size:cover;
  -moz-background-size:cover;
  -o-background-size:cover;
  min-height: calc(100vh + 100px);
  background-size:cover;
  background-position:center;
}
@media (min-width: 1200px) {
.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
  flex: 1;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}
}
@media (min-width: 1000px) {
header {
  height: 120px;
  /* background-color: #495057; */
} 
}
header {
  position: relative;
  background-image: url('../img/head.png');
  background-repeat:no-repeat;
  -webkit-background-size:cover;
  -moz-background-size:cover;
  -o-background-size:cover;
  background-size:cover;
  background-position:center;
  /* background-color: #495057; */
}

.container-header {
  /* background-color: rgb(74 74 74 / 84%); */
  padding: 40px 15px 0px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.header-text{
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 15px;
}

.hidden {
  display: none;
}



.card {
list-style: none;
  display: grid;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-bottom: 30px;
  border: none;
  align-content: stretch;
  justify-content: space-between;
  align-items: end;
}

.card_item {
  padding: 20px;
  margin: 15px;
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2),
  0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 2px 1px -1px rgba(0, 0, 0, 0.12);
 }

.card_item_container{
  display: flex;
  flex-direction: column;
}

.card_item_title{
  margin: 0;
  margin-bottom: 35px;
  font-size: 16px;
  font-weight: 500;
}
.card_item_title_app{
  font-weight: 400;
}

button{
  width: 100%;
  height: 40px;
  border-radius: 8px;
  margin-bottom: 10px;
  border:none;
  outline: none;
  font-size: 14px;
  font-weight: 500;


}
.card_button{
  background-color: #000;
  color: #fff;
  border: 2px solid transparent;
    transition: all var(--animation-duration) var(--timing-function);
}
.deep_button, .form_submit {
  background-color: rgb(60, 7, 110);
  color: #fff;
  border: 2px solid transparent;
  transition: all var(--animation-duration) var(--timing-function);
}
.deep_button:hover,.form_submit:hover {
  background-color: rgb(255, 255, 255);
  color: #000;
  border: 2px solid rgb(60, 7, 110);
  cursor: pointer;
}
.card_button:hover {
  background-color: rgb(255, 255, 255);
  color: #000;
  border: 2px solid #000;
  cursor: pointer;
}

.hidden_container{
  width: 100%;
  /* background-color: #fff; */
  padding: 0;
  margin: 30px auto 0 auto;
}

.hidden_container.hide {
  display: none;
}

.hidden_container.show {
  display: block;
}

.container_title{
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}
#dynamicInputs{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 10px;
}

label{
  margin: 0;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 500;
}
input{
  width: 100%;
  height: 45px;
  outline:#212121;
  border: 2px solid rgb(60, 7, 110);
  border-radius: 8px;
  padding-left: 15px;
}
.form_submit{
  margin-top: 20px;
}
.lightbox {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--animation-duration) var(--timing-function);
}


.lightbox.is-open {
  opacity: 1;
  pointer-events: initial;
}


.lightbox__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
}

.lightbox__content {
  transform: scale(0.95);
  transition: transform var(--animation-duration) var(--timing-function);
}


.lightbox.is-open .lightbox__content {
  transform: scale(1);
}



.lightbox__button {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 50%;
  background-color: transparent;
  color: #fff;
  cursor: pointer;
  transition: background-color var(--animation-duration) var(--timing-function);
  outline: none;
  background-image: url('../img/icon-close.svg');
  background-position: center;
  background-size: 60%;
  background-repeat: no-repeat;
}

.lightbox__button:hover,
.lightbox__button:focus {
  background-color: rgba(0, 0, 0, 0.5);
}

.form_link_ids, .form_link_subs{
  display: flex;
  flex-direction: column;
}
.naming_container{
  display: flex;
  flex-direction: column;
}
.deep_input {
  width: 100%;

}
.deep_input.sub3 {
  margin-top: 21px;

}

.naming_container{
  margin-top: 30px;
}

.naming_container.hide {
  display: none;
}

.naming_container.show {
  display: flex;
}

.naming_title, .dip_title{
  margin: 0;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
}

.dip_title {
  margin-top: 20px;
}

.wrapper{display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: space-between;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.copy_img{
  width: 20px;
  cursor: pointer;
  filter: invert(100%) sepia(0%) saturate(458%) hue-rotate(72deg) brightness(63%) contrast(85%);
}


/*
  ---
*/

.card_item_wrapper-unique {
  position: relative;
  justify-self: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 700px;
}

.card_item_wrapper-unique .card_item {
  width: 450px;
  min-height: 150px;
  height: max-content;
}

.select2 {
  margin-bottom: 35px!important;
}

.show_btn {
  display: block;
}

.hide_btn {
  display: none;
}

.hide_block {
  display: none;
}

.sub-button {
    background: #ffeb3b;
    color: #000;
    border: 0;
}

@media screen and (min-width: 320px) {

  .container {
    padding-right: 0;
    padding-left: 0;
  }

  .card_item_wrapper-unique {
    width: 320px;
  }

  .card_item_wrapper-unique .card_item {
    width: 310px;
  }

}

@media screen and (min-width: 375px) {

  .card_item_wrapper-unique {
    width: 375px;
  }

  .card_item_wrapper-unique .card_item {
    width: 350px;
  }

}

@media screen and (min-width: 425px) {

  .card_item_wrapper-unique {
    width: 100%;
  }

  .card_item_wrapper-unique .card_item {
    width: 80%;
  }

}

@media screen and (min-width: 700px) {

  .container {
    padding-right: 15px;
    padding-left: 15px;
  }

  .card_item_wrapper-unique {
    width: 700px;
  }

  .card_item_wrapper-unique .card_item {
    width: 450px;
  }

}

#paging {
  font-size: 12px;
  margin-top: 10px;
}

#paging a {
  color: #000;
  background: #e0e0e0;
  padding: 4px 8px;
  margin-right: 5px;
  text-decoration: none;
}

#paging a.aktif {
  background: #000 !important;
  color: #fff;
}

#paging a:hover {
  border: 1px solid #000;
}

.hidden {
  display: none;
}

.arrowPrev.jp-disabled, .arrowNext.jp-disabled { display: none; }

.pagination-link-p {
  padding: 4px 8px !important;
}