/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
-- lookbook-grid
*/

/*************************
Look Book Grid
*************************/

.lookbook-grid {
	max-width: 1300px;
	margin: 0 auto;
	display: flex;
	gap: 20px;
	.object-fit {
		object-fit: cover;
		border-radius: 10px;
	}
	.lookbook-grid_images {
		width: 70%;
		.lookbook-grid_image-row {
			display: flex;
			flex-direction: row;
			gap: 20px;
		}
	}
	.lookbook-grid_content {
		width: 30%;
		padding: 20px;
		display: flex;
		flex-direction: column;
		gap: 20px;
		justify-content: center;
		align-items: center;
		background-color: #4c5589;
		border-radius: 10px;
		h2 {
			font-size: 2rem;
			font-weight: bold;
			margin: 0;
			padding: 0;
			text-align: center;
			color: #fff;
		}
		p {
			font-size: 1rem;
			line-height: 1.2rem;
			font-weight: normal;
			margin: 0;
			padding: 0;
			text-align: center;
			color: #fff;
		}
	}
}
@media (max-width: 900px) {
	.lookbook-grid {
		flex-direction: column;
		.lookbook-grid_content {
			width: 100%;
		}
	}
}

/*************************
Modal Componet
*************************/

#dialog_layer {
    position: relative;
    z-index: 9999999999;
  }
  

.wc-dialog {

    .hidden {
        display: none;
    }
    
    [role="dialog"] {
      box-sizing: border-box;
      padding: 15px;
      border: 1px solid #000;
      background-color: #fff;
      min-height: 100vh;
    }
    
    @media screen and (min-width: 640px) {
      [role="dialog"] {
        border-radius: 6px;
          min-width: calc(640px - (15px * 2)); /* == breakpoint - left+right margin */
          min-height: auto;
          box-shadow:
              0 19px 38px rgb(0 0 0 / 12%),
              0 15px 12px rgb(0 0 0 / 22%);
      }
    }
    
    .dialog_label {
      text-align: center;
    }
    
    .dialog_form {
      margin: 15px;
    }
    
    .dialog-backdrop {
      display: none;
      position: fixed;
      overflow-y: auto;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      z-index: 1;
    }
    
    @media screen and (min-width: 640px) {
      .dialog-backdrop {
          background: rgb(0 0 0 / 30%);
      }
    }
    
    .dialog-backdrop.active {
      display: block;
    }
    
    .no-scroll {
      overflow-y: auto !important;
    }
    
    /* this is added to the body when a dialog is open */
    .has-dialog {
      overflow: hidden;
    }
    
    
    button.close {
        background-color: white !important;
        box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.25);
        position: absolute;
        top: -16px;
        right: -16px;
        border-radius: 30px;
        height: 40px;
        width: 40px;
        display: flex;
        align-content: center;
        justify-content: center;
        align-items: center;
    }
    .default_dialog {
        position: relative;
    }
    .dialog-backdrop.active {
        display: flex;
        align-content: center;
        justify-content: center;
        align-items: center;
        opacity: 1;
        background-color: rgba(0, 0, 0, 0.22);
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
    }
}

