/* section.price */

section.price {
    padding: 80px 0 50px;
    box-sizing: border-box;
}

section.price .price-title h2 {
    font-size: 45px;
}

section.price .price-title .title-wrap {
  padding-top:40px !important;
}

section.price .price-title .title-wrap h2 {
  font-family: 'Pretendard';
  font-size: 40px;
}
section.price .price-title .title-wrap span {
  font-size: 16px;
  color:#727070
}

section.price .price-title p.subtitle {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

section.price .price-title h4 {
    font-size: 18px;
}

section.price .price-title p {
    /* line-height: 25px; */
}

section.price .price-title p:last-child {
    margin-bottom: 70px;
}

section.price .price-form {
    width: 100%;
    padding-bottom: 50px;
}

section.price .price-form form {
    width: 100%;
}


/* section.price .price-form .price-table {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
} */

section.price .price-form .price-table .price-card {
    /* background-color: #202020; */
    padding: 30px 0 80px;
    /* box-sizing: border-box; */
    width: 100%;
    border-radius: 10px;
    /* height: 260px; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* margin: 20px 0 80px; */
}
section.price .price-form .price-table .price-card:nth-of-type(2) {
  padding-top:0;
}

section.price .price-form .price-table .price-card .top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

section.price .price-form .price-table .price-card .top h3 {
    font-size: 42px;
}

section.price .price-form .price-table .price-card .top h3 .btn-licence img {
  width: 33px;
}

section.price .price-form .price-table .price-card .top p {
    font-size: 18px;
    margin: 15px auto 50px;
    color: #727070;
    text-align: center;
	border-bottom: 1px solid rgb(255, 99, 71, 0.5);
}

section.price .price-form .price-table .price-card .price-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}


/* section.price .price-form .price-table .price-card .price-wrap:nth-child(2) {
  justify-content: flex-start;
} */

section.price .price-form .price-table .price-card .price-wrap .price-item {
  background: #181818;
  /* box-shadow: 0px 4px 12px rgb(255 255 255 / 40%); */
  padding: 17px 20px 20px;
  box-sizing: border-box;
  border-radius: 8px;
  width: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: all .5s;
  position: relative;
  height: 180px;
}

section.price .price-form .price-table .price-card .price-wrap .price-item .check-item {
    position: absolute;
    top: -30px;
    /* left: -30px; */
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    font-size: 50px;
    color: #ff2fc5;
    display: none;
}

section.price .price-form .price-table .price-card .price-wrap .price-item .check-item.active {
    display: block;
}

 section.price .price-form .price-table .price-card .price-wrap .price-item.active,
section.price .price-form .price-table .price-card .price-wrap .price-item:hover {
    box-shadow: 0px 4px 12px rgb(246 189 255 / 40%);
    background: linear-gradient(180deg, rgba(224, 32, 255, 0.35) 0%, rgba(225, 39, 255, 0) 100%);
    text-align: center;
} 

section.price .price-form .price-table .price-card .price-wrap .price-item.active h4 {
    color: #fff;
}

section.price .price-form .price-table .price-card .price-wrap .price-item h4 {
    font-size: 24px;
    text-align: center;
    font-weight: 500;
}

section.price .price-form .price-table .price-card .price-wrap .price-item p.cost {
    font-size: 26px;
    color: #969696;
    font-weight: 700;
    text-align: center;
    display: flex;
    justify-content: center;
}

section.price .price-form .price-table .price-card .price-wrap .price-item p.per-month {
    position:relative;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
section.price .price-form .price-table .price-card .price-wrap .price-item p.per-month:after {
    position: absolute;
    width: 75px;
    height: 1px;
    background: #fff;
    bottom: -4px;
    content: '';
}

section.price .price-form .price-table .price-card .price-wrap .price-item p.per-month.yearly {
    margin-top: 10px;
}

section.price .price-form .price-table .price-card .price-wrap .price-item p.per-month span {
    font-size: 18px;
}

section.price .price-form .price-table .price-card .price-wrap .price-item p.cost span {
    font-size: 12px;
}
section.price .price-form .price-table .price-card .price-wrap .price-item p.cost {
  position: relative;
}
section.price .price-form .price-table .price-card .price-wrap .price-item p.cost img {
  position: absolute;
  top: 15px;
  width:80px
  
}

section.price .price-form .price-table .price-card .price-wrap .price-item p.per-month span:last-child {
    align-self: flex-end;
}

section.price .price-form .price-table .price-card .price-wrap a.btn-choice {
  display: block;
  border: 1px solid #535353;
  border-radius: 16px;
  padding: 4px 20px;
  box-sizing: border-box;
  width: 50%;
  margin: 15px auto 0;
  text-align: center;
  transition: all .3s;
  font-size:12px;
}

section.price .price-form .price-table .price-card .price-wrap a.btn-choice.active {
    background-color: #ca0be1;
    border: 1px solid #ca0be1;
}

section.price .price-form .price-table .price-card .price-wrap .price-item:hover>a.btn-choice {
    background-color: #ca0be1;
    border: 1px solid #ca0be1;
}

section.price .price-form .price-table .price-card .policy-link a,
section.price .price-form .price-table .price-card .btn-contact {
    display: block;
    text-align: center;
    color: #e955ff;
    text-decoration: underline;
    font-size: 18px;
}

section.price .price-form .price-table .price-card .policy-link a {
    margin-top: 20px;
}

section.price .price-form .price-table .price-card .price-wrap .price-item .per-music {
  display: none;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 47px;
  height: 20px;
}

section.price .price-form .price-table .price-card .price-wrap .price-item .per-music select {
  background-color: #000;
  color: #e955ff;
  border-radius: 5px;
  padding: 2px 5px;
  font-size: 16px;
  box-sizing: border-box;
  font-size: 12px;
}

section.price .price-form .price-table .price-card.type2 {
    text-align: center;
}

section.price .price-form .price-table .price-card.type2 h3 {
    font-size: 28px;
}

section.price .price-form .price-table .price-card.type2 p {
    font-size: 13px;
    margin-top: 10px;
}

section.price .price-form .price-table .price-card .btn-contact {
    text-align: center;
    width: fit-content;
    margin: 50px auto 0;
}

section.price .price-form .price-table .price-card .company-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: space-between; */
    margin-top: 20px;
}

section.price .price-form .price-table .price-card .company-bottom span {
    font-size: 18px;
    text-align: center;
    color: #c2c2c2;
}

section.price .price-form .price-table .price-card .company-bottom .policy-link {
    display: flex;
    gap: 50px;
}

section.price .price-form .price-table .price-etc {
    display: flex;
    justify-content: center;
    gap: 15px;
}

section.price .price-form .price-table .price-etc .price-card {
    background: #181818;
    padding: 50px 20px;
    box-sizing: border-box;
    border-radius: 8px;
    width: 350px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: all .5s;
    position: relative;
    cursor: default;
}


/* price-brief */

section.price .price-form .price-brief {
    max-width: 1020px;
    margin: 0 auto;
}

section.price .price-form .price-brief .price-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 20px;
    border-bottom: 1px solid #535353;
    max-width: 780px;
    margin:auto
}

section.price .price-form .price-brief .price-info h2 {
    font-size: 35px;
}

section.price .price-form .price-brief .price-info .price-result {
    border: 1px solid #fff;
    border-radius: 8px;
    padding: 10px 20px;
    box-sizing: border-box;
    color:#dd50f2;
}

section.price .price-form .price-brief .price-info .price-result p {
    display: inline-block;
    font-size: 24px;
}

section.price .price-form .price-brief .price-info .price-result p.price-text {
    font-weight: 700;
}


/* youtube-box */

section.price .price-form .price-brief .youtube-box {
    padding: 50px 0;
    box-sizing: border-box;
    max-width: 900px;
    margin: 0 auto;
    display: none;
}

section.price .price-form .price-brief .youtube-box .youtube-link {
    display: grid;
    grid-template-columns: 1fr 65px;
    align-items: center;
    gap: 5px;
    margin: 30px auto;
}

section.price .price-form .price-brief .youtube-box .youtube-input {
    display: flex;
    align-items: center;
    border: 1px solid #fff;
    border-radius: 8px;
    padding: 0 20px;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

section.price .price-form .price-brief .youtube-box a {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    height: 50px;
}

section.price .price-form .price-brief .youtube-box a.add-channel {
    background-color: #ca0be1;
    color: #fff;
}

section.price .price-form .price-brief .youtube-box a.remove-channel {
    display: flex;
    border: 1px solid #FF0000;
    background-color: transparent;
    color: #FF0000;
}

section.price .price-form .price-brief .youtube-box .youtube-input span.label {
    width: 120px;
    height: 50px;
    background-image: url("/static/images/label_youtube.262b34e80782.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

section.price .price-form .price-brief .youtube-box .youtube-input input {
    height: 50px;
    padding: 10px 20px;
    box-sizing: border-box;
    width: 100%;
    background-color: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
}

section.price .price-form .price-brief .youtube-box .youtube-info p {
    padding: 10px 0;
    font-size: 15px;
}

section.price .price-form .price-brief .youtube-box .youtube-info p.only-public {
    display: none;
}

section.price .price-form .price-brief .youtube-box .youtube-info p.red {
    color: #ff9090;
}

section.price .price-form .price-brief .youtube-box .youtube-info p.only-public span {
    color: #e955ff;
}

section.price .price-form .payment {
    max-width: 780px;
    margin: 0 auto;
    padding: 30px 0 100px;
}

section.price .price-form .payment h3.payment-title {
    font-size: 25px;
    font-weight: 500;
}

section.price .price-form .payment .payment-wrap {
    /* display: grid;
    grid-template-columns: 1fr 1px 1fr;
    justify-items: center;
    margin-top: 30px;
    gap: 10px; */
}


section.price .price-form .payment .payment-wrap .line {
    width: 100%;
    height: 100%;
    background-color: #535353;
}

/* section.price .price-form .payment .payment-wrap .PG .pg-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-items: center;
    gap: 10px;
} */
section.price .price-form .payment .payment-wrap .PG .pg-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 10px;
}

section.price .price-form .payment .payment-wrap .pg-list a {
    position:relative;
    display: inline-flex;
    border: 1px solid #fff;
    gap: 30px;
    align-items: center;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 6px;
    font-size: 14px;
    width: 187px;
    height: 50px;
}
section.price .price-form .payment .payment-wrap .pg-list a.pay-credit {
    display: flex;
    padding: 0 10px;
}
section.price .price-form .payment .payment-wrap .pg-list a.pay-naver img, 
section.price .price-form .payment .payment-wrap .pg-list a.pay-kakao img, 
section.price .price-form .payment .payment-wrap .pg-list a.pay-payco img{
  margin:auto
}
section.price .price-form .payment .payment-wrap .pg-list a.pay-credit img {
  max-height: 35px;
}
section.price .price-form .payment .payment-wrap .pg-list a.pay-account {
  justify-content: center;
}
section.price .price-form .payment .payment-wrap img {
  max-height: 26px;
  display:block
}
section.price .price-form .payment .payment-wrap .PG {
    width: 100%;
}
section.price .price-form .payment .payment-wrap .PG .pg-list a.active {
    border: 1px solid #ca0be1;
    color: #e955ff;
}

section.price .pg-description {
    margin-top: 15px;
    font-size: 14px;
    line-height: 22px;
}
section.price .pg-description.mobile {
    display: none;
}

section.price .price-form .payment .payment-wrap .policy-wrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

section.price .price-form .payment .payment-wrap .policy-wrap .policy-group {
    /* display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-items: center;
    width: 100%;
    gap:10px; */
}

section.price .price-form .payment .payment-wrap .policy-wrap a {
    display: inline-flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px 0 15px;
    box-sizing: border-box;
    border: 1px solid #fff;
    width: 187px;
    height: 50px;
    border-radius: 6px;
    font-size: 18px;
}

section.price .price-form .payment .payment-wrap .policy-wrap a.btn-agree {
    position: relative;
    border-left: 1px solid #fff;
    /* border-radius: 0 6px 6px 0; */
}


section.price .price-form .payment .payment-wrap .policy-wrap input[type="checkbox"] {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}
section.price .price-form .payment .payment-wrap .policy-wrap .policy-check {
  border: 1px solid #fff;
  border-radius: 2px;
  padding: 2px;
  width: 20px;
  height: 20px;
}

section.price .price-form .payment .payment-wrap .policy-wrap .policy-check span {
  display: none;
  color: #d30084;
  font-size: 20px;
}
section.price .price-form .payment .payment-wrap .policy-wrap input[type="checkbox"]:checked + .policy-check {
  border-color:#d30084
}

section.price .price-form .payment .payment-wrap .policy-wrap input[type="checkbox"]:checked + .policy-check span {
  display: block;
}

section.price .price-form .payment .payment-wrap .policy-wrap .policy-content {
    display: none;
    white-space: pre-line;
    height: 250px;
    overflow-y: scroll;
    padding: 20px;
    box-sizing: border-box;
}

section.price .price-form .payment .payment-wrap .policy-wrap a.btn-agree.active {
    border: 1px solid #ca0be1;
    color: #e955ff;
}

section.price .price-form .payment .payment-wrap .policy-wrap .btn-submit {
    display: block;
    border: none;
    background-color: #d30084;
    color: #fff;
    width: 100%;
    font-size: 22px;
    border-radius: 6px;
    padding: 12px 0;
    box-sizing: border-box;
    cursor: pointer;
    width: 384px;
}

section.price .price-form .service-images {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

section.price .price-form .service-images .service-card {
    height: 400px;
    border-radius: 10px;
    background-color: #181818;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

section.price .price-form .service-description {
    display:none;
    padding: 70px 0 0;
}

section.price .price-form .service-description .service-card {
    box-sizing: border-box;
    background-color: #181818;
    margin: 20px 0;
}

section.price .price-form .service-images .service-card .img-wrap {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 200px;
}

section.price .price-form .service-images .service-card .text-wrap,
section.price .price-form .service-description .service-card .text-wrap {
    padding: 20px;
    box-sizing: border-box;
    word-break: keep-all;
}

section.price .price-form .service-description .service-card .text-wrap {
    padding: 50px;
}

section.price .price-form .service-images .service-card .text-wrap h3,
section.price .price-form .service-description .service-card .text-wrap h3 {
    margin-bottom: 20px;
}

section.price .price-form .service-description .service-card .text-wrap p {
    line-height: 20px;
}

#agreement,
#Price,
#paymentType,
#paymentDate {
    position: absolute;
    visibility: hidden;
}

#LicenceForm.modal_wrap .modal_cnt {
    background: #000;
    max-width: 750px;
}

#LicenceForm.modal_wrap .modal_cnt .modal_body img {
    width: 90%;
    margin: 36px auto;
}


/***
* price_contact.html
***/

.contact-form {
    /* max-width: 768px; */
    margin: 0 auto;
    padding: 0px;
    box-sizing: border-box;
}

.contact-form form {
    width: 100%;
}

.contact-form h2 {
    font-size: 24px;
    text-align: left;
    margin-bottom: 10px;
    color: #727070;
}

.contact-form .form-row {
    padding: 10px 0;
}

.contact-form .form-row.form-row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-form .form-row input,
.contact-form .form-row textarea {
    border: 1px solid #535353;
    padding: 15px 20px;
    box-sizing: border-box;
    color: #fff;
    background-color: #000;
    font-size: 16px;
    width: 100%;
}

.contact-form .form-row textarea {
    resize: none;
    height: 200px;
}

.contact-form .btn-submit {
    width: 100%;
    padding: 15px 20px;
    box-sizing: border-box;
    background-color: #ca0be1;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    margin-top: 20px;
    cursor: pointer;
}

.contact-form .form-row.form-row-check {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form .form-row.form-row-check input {
    width: auto;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

#agreementModal .modal_cnt {
    background-color: #000;
    padding: 20px;
    box-sizing: border-box;
    max-width: 650px;
}

#agreementModal .modal_cnt .modal_body h3 {
    font-size: 25px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #fff;
}


/***
* 반응형
***/

@media all and (max-width: 1440px) {
    section.price {
        padding: 180px 20px 50px;
    }

    section.price .price-form .service-images .service-card {
      height: 450px;
    }
}

@media all and (max-width: 1080px) {
    section.price {
      padding: 30px 20px 50px;
    }
    section.price .price-form .price-table .price-card .price-wrap .price-item h4 {
        font-size: 23px;
    }
    section.price .price-form .payment .payment-wrap .PG .pg-list {
        grid-template-columns: 1fr;
    }
    section.price .price-form .price-brief .price-info {
        flex-direction: column;
        gap: 20px;
    }

    section.price .price-form .service-images .service-card {
      height: 500px;
    }
}

@media all and (max-width: 768px) {
    section.price {
        padding: 140px 20px 50px;
    }
    section.price .price-form .price-table .price-card .price-wrap {
        display: flex;
        flex-wrap: wrap;
        margin: 20px 0 10px;
    }
/*20220523수정*/
section.price .price-title p:last-child {
    margin-bottom: 15px;
}
	section.price .price-form .price-table .price-card .price-wrap .price-item {
        margin: 20px auto;
        width: 100%;
		height:185px;
		padding:30px 20px;
    }
	section.price .price-form .price-table .price-card .price-wrap .price-item h4 {
    margin-bottom: 0px;
}

section.price .price-title p.subtitle span {
display:none
}
section.price .price-form .price-table .price-card .company-bottom .policy-link {
    display: none;
    gap: 50px;
}
section.price .price-form .price-table .price-card .price-wrap a.btn-choice {
	display:none;
	}
	section.price .price-form .price-table .price-card {
	padding: 30px 0 40px
	}
/*20220523수정*/
    section.price .price-form .price-table .price-etc {
        display: block;
    }
    section.price .price-form .price-table .price-etc .price-card {
        margin: 20px auto;
        width: 100%;
    }
    section.price .price-form .price-table .price-card .top h3 {
        font-size: 26px;
    }
    section.price .price-form .price-table .price-card .top p {
        font-size: 16px;
    }
    section.price .price-form .payment .payment-wrap {
        grid-template-columns: 1fr;
    }
    /* section.price .price-form .payment {
    padding-bottom: 0;
  } */
    section.price .price-form {
        padding-bottom: 80px;
    }
    section.price .price-form .service-images {
        grid-template-columns: 100%;
    }
    section.price .price-form .price-brief .price-info {
        padding: 60px 0 30px;
    }
    section.price .price-form .price-brief .price-info h2 {
        font-size: 26px;
    }
    section.price .price-form .price-brief .price-info .price-result p {
        font-size: 18px;
    }
    section.price .price-form .price-brief .youtube-box {
        padding: 30px 0;
    }
    section.price .price-title h2 {
        font-size: 45px;
    }
    .contact-form {
        padding: 0px;
    }
    section.price .price-title .title-wrap h2 {
        font-size: 26px;
    }
    section.price .price-form .service-description .service-card .text-wrap {
        padding: 40px 20px;
    }

    .contact-form h2 {
      display: none;
    }

    section.price .price-form .service-images .service-card {
      height: auto;
    }
    #LicenceForm.modal_wrap .modal_cnt {
      max-width: 240px;
    }
}
@media all and (max-width: 450px){
  section.price {
    padding: 80px 10px 50px;
  }
  section.price .price-title .title-wrap h2 {
    font-size: 20px;
  }
  section.price .price-title .title-wrap span {
    font-size:10px;
  }
  section.price .price-form .price-table .price-card {
    padding: 0px 0 35px;
  }
  section.price .price-form .price-table .price-card .top h3 {
    font-size: 20px;
  }
  section.price .price-form .price-table .price-card .top p {
    font-size: 10px;
    margin: 8px auto 5px;
  }
  section.price .price-form .price-table .price-card .top h3 .btn-licence img {
    width: 20px;
  }
  section.price .price-form .price-table .price-card .price-wrap .price-item {
    padding: 13px 20px;
    max-width: 187px;
    max-height: 105px;
    margin:0;
  }
  section.price .price-form .price-table .price-card .price-wrap .price-item h4 {
    font-size: 14px;
  }
  section.price .price-form .price-table .price-card .price-wrap .price-item p.cost {
    font-size: 17px;
  }
  section.price .price-form .price-table .price-card .price-wrap .price-item p.cost img {
    position: absolute;
    top: 10px;
    width: 80px;
}
  section.price .price-form .price-table .price-card .price-wrap .price-item p.per-month.yearly,section.price .price-form .price-table .price-card .price-wrap .price-item p.per-month {
    font-size: 20px;
  }
  section.price .price-form .price-table .price-card .price-wrap .price-item .check-item {
    top: -15px;
    font-size: 25px;

  }
  section.price .price-form .price-table .price-card .price-wrap .price-item .per-music {
    margin-top: 0;
  }
  section.price .price-form .price-table .price-card .company-bottom span {
    font-size: 10px;
  }
  section.price .price-form .price-table .price-card .company-bottom {
    margin-top: 0;
  }
  section.price .price-form .price-table .price-card .btn-contact {
    margin: 30px auto 0;
  }
  section.price .price-form .price-brief .price-info {
    padding: 5px 0 15px;
  }
  section.price .price-form .price-brief .price-info h2 {
    font-size: 20px;
  }
  section.price .price-form .price-brief .price-info {
    gap:8px
  }
  section.price .price-form .price-brief .price-info .price-result p {
    font-size: 14px;
  }
  section.price .price-form .price-brief .price-info .price-result {
    padding: 8px 13px;
  }
  section.price .price-form .payment .payment-wrap img {
    display: inline-block;
    vertical-align: middle;
    max-height: 20px;
  }
  section.price .price-form .payment h3.payment-title {
    font-size: 20px;
    text-align: center;
  }
  
  section.price .price-form .payment {
    padding: 20px 0 40px;
  }
  section.price .price-form .payment .payment-wrap .pg .pg-list {
    margin-top: 20px;
  }
  section.price .pg-description {
    display: none;
  }
  section.price .pg-description.mobile {
    display: block;
    font-size: 10px;
    line-height: normal;
  }
  section.price .price-form .payment .payment-wrap .policy-wrap {
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0 18px;
  }
  section.price .price-form .payment .payment-wrap .policy-wrap a {
    font-size: 14px;
    height: 37px;
    flex: 48%;
  }
  section.price .price-form .payment .payment-wrap .policy-wrap .btn-submit {
    font-size: 16px;
    width: 100%;
  }
  section.price .price-form .payment .payment-wrap .pg-list a {
    text-align: center;
    line-height: 50px;
    padding:0;
    height: 37px;
    flex: 48%;
  }

  section.price .price-form .payment .payment-wrap .policy-wrap .policy-check {
    width: 15px;
    height: 15px;
  }
  section.price .price-form .payment .payment-wrap .policy-wrap .policy-check span {
    font-size: 15px;
  }
  section.price .price-form .price-table .price-card .price-wrap {
    flex-wrap: wrap;
    margin: 20px 0 10px;
  }
  section.price .price-form .payment .payment-wrap .PG .pg-list {
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
  }
}

@media all and (max-width:420px){
  section.price .price-form .price-table .price-card .price-wrap .price-item {
    padding: 10px 16px;
    max-width: 49%;
    max-height: 103px;
  }
  section.price .price-form .price-table .price-card .price-wrap {
    gap:15px
  }
  section.price .price-form .price-table .price-card .price-wrap .price-item .per-music select {
    padding:0;
  }
  section.price .price-form .price-table .price-card .price-wrap .price-item .per-music {
    top: 8px;
    right: 4px;
  }
  section.price .price-form .payment .payment-wrap .pg-list a,
  section.price .price-form .payment .payment-wrap .policy-wrap a {
    flex:45%
  }
  #LicenceForm.modal_wrap .modal_cnt {
    max-width: 220px !important;
  }
}
