button{
  border: none;
  background: none;
  cursor: pointer;
}

.layer-notice {
  position:fixed;
  width: 100%;
  background-color:rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding:20px 40px 40px;
  gap: 10px;
  z-index:100;
  display: none;
  height: 100%;
  justify-content: center;
}

.app-guide-container { 
  min-width: 320px;
  max-width: 400px;
  width: 90%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  align-self: center;
  background-color: #fff;
  border-radius: 16px;
  padding-top: 20px;
}

.app-guide-inner {
  width: 100%;
  display: flex;
  gap: 30px;
  flex-direction: column;
  padding: 40px 30px 30px;
}

.app-guide-title{ 
  display: flex;
  justify-content: center;
    gap: 16px;
    color: #2c323b;
    font-size: 20px;
    font-weight: 700;
    flex-direction: column;
    align-items: center;
}

.app-guide-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.app-guide-row{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.app-guide-icon {
  flex:0 0 40px;
  width: 40px;
  height: 40px;
  background-image: url(../images/icon-mobile-protection.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: relative;
}

.icon-body {
  width: 23.33px;
  height: 33.33px;
  position: absolute;
  top: 3.34px;
  left: 5.83px;
  outline: 1.5px solid #F6F7F9;
  outline-offset: -0.75px;
}

.icon-highlight {
  width: 15px;
  height: 15px;
  position: absolute;
  top: 3.33px;
  left: 19.17px;
  background: #F15F68;
  outline: 1.5px solid #F6F7F9;
  outline-offset: -0.75px;
}

/*.app-guide-title {
  color: white;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}*/

.app-guide-description {
  color: #2c323b;
  font-size: 14px;
  font-weight: 400;
}

.app-guide-note {
  color: #1AB760;
  font-size: 13px;
  font-weight: 400;
  text-align: center;
}

.app-guide-right {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  overflow: hidden;
}

.guide-item {
  width: 340px;
  padding: 12px 0 0;
  display: flex;
  gap: 12px;
  align-items: center;
}

.icon-circle {
  width: 40px;
  height: 40px;
  background: #E9EEF3;
  border-radius: 22px;
  position: relative;
  display:flex;
  justify-content: center;
  align-items: center;
}

.icon-content {
  width: 28px;
  height: 28px;
  position: absolute;
  top: 6px;
  left: 6px;
}

.outline-icon {
  position: absolute;
  outline: 1px solid #424952;
  outline-offset: -0.5px;
}

/* 아이콘 예시 위치 조절 */
.icon-circle::after {
    content:"";
    width:20px;
    height:20px;   
}
.icon-bell::after{
    background-image: url(../images/icon-bell.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
}
.icon-camera { 
    background-image: url(../images/icon-camera.svg); 
    background-repeat: no-repeat;
    background-position: 50% 50%;
}
.icon-mic { 
    background-image: url(../images/icon-mic.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%; 
}
.icon-album { 
    background-image: url(../images/icon-image.svg); 
    background-repeat: no-repeat;
    background-position: 50% 50%;
 }

.item-text {
  display: flex;
  flex-direction: column;
  gap:4px;
}

.item-title {
  color:#2c323b;
  font-size: 15px;
  font-weight: 500;
}

.item-desc {
  color: #56606B;
  font-size: 13px;
  font-weight: 400;

}

.close-btn {
    width: 32px;
    height: 32px;
    position: absolute;
    top:12px;
    right:12px;
    background-image: url(../images/icon-close.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%; 
}

.hide-week {
  position: absolute;
  bottom: 0;
  right:0;
  display: flex;
  align-items: center;
  gap: 10px;
  color:#ffffff;
  display:none;
}

.checkbox {
  width: 22px;
  height: 22px;
  background: #FF7780;
  border-radius: 2px;
  position: relative;
}

.checkbox::after {
  content: '';
  width: 14px;
  height: 10.5px;
  background: white;
  position: absolute;
  top: 5.5px;
  left: 4px;
}

.hide-text {
  color: white;
  font-size: 14px;
  font-weight:500;

}

.notice-label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 6px 30px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  outline: 1px solid rgba(155, 164, 174, 0.4);
  outline-offset: -1px;
  color: white;
  font-size: 16px;
  font-weight: 700;
  display:none;
}

.mobile-download{
  width:100%;
  background-color: #1B2025;
  color: white;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 4px; 
  display:flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mobile-download:hover{
  background-color: #000000;
}
.mobile-download .device-type{
  font-size: inherit;
}

/*checkbox*/
[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.input-check {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-align-items: center;
    align-items: center;
}

.control-container+.control-container {
    margin-top: 0.7em;
}

.screen-reader {
    /* 스크린 리더를 고려해서 체크박스를 화면에서 숨김 */
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    border: 0;
    overflow: hidden;
    margin: -1px;
    clip-path: inset(50%);
}

.input-check .label-box {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    /* IE11용 */
    align-items: center;
    height: 100%;
}

.input-check .check-icon {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 0.2px;
    background-color: #fff;
    border: 1px solid #afb9c3;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.input-check label {
    /*padding-left: 2.25em;*/
    position: relative;
    cursor: pointer;
    min-width: 1.25rem;
    min-height: 1.25rem;
}

[type="checkbox"]:checked+.label-box .check-icon {
    border: none;
    background-color: #ff7780;
}

.input-check [type="checkbox"]:checked+.label-box .check-icon::before {
    content: "";
    position: absolute;
    box-sizing: border-box;
    width: 30%;
    height: 55%;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-70%) rotateZ(40deg);
    border-right: 1.75px solid #ffffff;
    border-bottom: 1.75px solid #ffffff;
    border-color: #fff;
}

[type="checkbox"]:disabled+.label-box .check-icon {
    border-color: #cbd4de;
    background-color: #e9eef3;
}

.input-check .label-box .check-text {
    padding-left: 0.75rem;
}

@media all and (max-width:767px) {
    .layer-notice {
        padding:16px;
    }
   /* .app-guide-inner {
        flex-wrap: wrap;
    }*/
}
@media all and (max-width:479px) {
   /*.layer-notice{
        height: 100%;
    }*/
}