.price-table {
    width: 60%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 30px 0 0 50px;
    margin-top: 20px;
}

.price-table .title {
    text-transform: uppercase;
    font-size: 22px;
    line-height: 34px;
    color: #770897;
    font-weight: bold;
    padding: 0 0 25px 34px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.price-table .title .cutting-line {
    width: 32px;
    height: 32px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: -30px;
}
.price-table .title .cutting-line .square {
    width: 5px;
    height: 5px;
    position: absolute;
    background-color: #FFF;
}
.price-table .title .cutting-line.top-left {
    border-bottom: 2px solid #770897;
    border-right: 2px solid #770897;
    float: left;
    margin-left: -33px;
}
.price-table .title .cutting-line.top-left .square {
    margin: 28px 0 0 28px;
}
.price-table .title .cutting-line.top-right {
    border-bottom: 2px solid #770897;
    border-left: 2px solid #770897;
    float: right;
    margin: -60px -33px 0 0;
}
.price-table .title .cutting-line.top-right .square {
    margin: 28px 0 0 -3px;
}

.price-table .title .text {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
}
.price-table .title .text > span {
    display: block;
}
.price-table .title .text span.right-text {
    color: #242424;
    font-size: 16px;
    text-transform: none;
    text-align: right;
    line-height: 30px;
    display: flex;
    flex-direction: row;
    min-width: 255px;
}
.price-table .title .text span.right-text > * {
    display: inline-block;
}

.price-table .title .text span.right-text .number {
    font-size: 26px;
    min-width: 40px;
}
.price-table .title .text span.right-text .number i {
    font-size: 10px;
}
.price-table .title .text span.right-text .text {
    line-height: 37px;
    padding-left: 5px;
}
.price-table .title .text span.right-text i.tooltip {
    color: #FFBB14;
    font-size: 30px;
    cursor: pointer;
    float: right;
    margin: 3px 0 0 10px;
}

.price-table .table {
    height: 500px;
    overflow: hidden;
}

.price-table .table .white-blur {
    position: absolute;
    height: 180px;
    margin-top: 320px;
    width: 650px;
    background-color: #FFF;
    background: linear-gradient(rgba(255,255,255,0) 0%, rgba(255,255,255,1) 75%, rgba(255,255,255,1) 100%);
    z-index: 2;
}

.price-table .all_quantity {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 2px solid #770897;
    color: #770897;
    margin: 100px auto 0;
    display: block;
    padding: 17px;
    text-decoration: none;
    background-color: #FFF;
    text-align: center;
    width: auto;
    font-size: 13px;
    font-weight: bold;
    width: 270px;
}
.price-table .all_quantity:hover {
    background-color: #770897;
    color: #FFF;
}

.price-table table { max-width: 100%; min-width: 100%; }
.price-table table,
.price-table table tr,
.price-table table tr td,
.price-table table tr th {
    border-collapse: collapse;
    border: 2px solid #FFF;
    border-top: none;
    /* special flex display */
    display: flex;
}
.price-table table tr {
    border-left: 1px solid #FFF;
    border-right: 1px solid #FFF;
}
.price-table table tbody {
    /* special flex display */
    display: flex;
    flex-direction: column;
}

.price-table table tr th {
    background-color: #F2D4F8;
    color: #770897;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    padding: 20px 0;
    /* special flex display */
    width: 100%;
    flex-direction: column;
}
.price-table table tr th:first-child {
    background-color: #FFF;
    max-width: 75px;
    min-width: 75px;
}
.price-table table tr td {
    text-align: center;
    color: #770897;
    background-color: #FEF9FF;
    padding: 20px 0;
    /* special flex display */
    width: 100%;
    flex-direction: column;
}
.price-table table tr td:first-child {
    max-width: 75px;
    min-width: 75px;
}
.price-table table tr:nth-child(2n) td {
    background-color: #F8EBFC;
}
.price-table table tr td:hover:not(:first-child) {
    background-color: #770897;
    color: #FFF;
    cursor: pointer;
}

/* Width <= 1480px */
@media (max-width: 1480px) {
    .price-table table tr th,
    .price-table table tr td {
        font-size: 14px;
    }
    .price-table .title { font-size: 22px; }
    .price-table .title .text span.right-text {
        font-size: 14px;
        min-width: 236px;
    }
}
/* Width <= 1430px */
@media (max-width: 1430px) {
    .price-table .title { font-size: 18px; }
}
/* Width <= 1380px */
@media (max-width: 1380px) {
    .price-table .title .text { flex-direction: column; }
    .price-table .title .text span.right-text { text-align: left; }
    .price-table .title .text span.right-text .text { max-width: 155px; }
}
/* Width <= 1280px */
@media (max-width: 1280px) {
    .price-table table tr th,
    .price-table table tr td {
        font-size: 12px;
    }
}
/* Width <= 1024px */
@media (max-width: 1024px) {
    .price-table {
        width: 100%;
        padding: 30px 50px 0;
    }
    .price-table .title { padding-left: 0; }
    .price-table .title .cutting-line { display: none; }
    .price-table .title .text { flex-direction: row; }
    .price-table .table table { min-width: 100%; }
}
/* Width <= 620px */
@media (max-width: 620px) {
    .price-table .table table tr th:first-child,
    .price-table .table table tr td:first-child {
        position: relative;
        left: 0px;
    }

    .price-table .title .text { flex-direction: column; }
    .price-table .table { overflow-x: scroll; }
}
/* Width <= 420px */
@media (max-width: 425px) {
    .price-table {
        padding: 10px 20px 0;
    }
}