:root {
    --c-blue-900: #081030;
    --c-blue-800: #111b40;
    --c-blue-700: #152148;
    --c-blue-500: #1d7bdb;
    --c-blue-300: #293359;
    --c-blue-200: #4e5985;
    --c-blue-100: #dfe8ff;
    --c-green-400: #4ade80;
}

.famous{
    -moz-box-shadow: 0 0 5px #fff !important;
    -webkit-box-shadow: 0 0 5px #fff !important;
    box-shadow: 0px 0px 5px #fff !important;

}

.price-section{
    line-height: 1.5;
	font-family: "Outfit", sans-serif;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(0, 0, 0, 0.9);
    background-image: url(../images/slider/3.jpg);
    background-blend-mode: darken;
	color: var(--c-blue-100);
	padding: 10vh 12px;
}

.price-table {
    margin:20px;
    background-color: var(--c-blue-700);
    border-radius: 16px;
    max-width: 375px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 45px 0 rgba(0, 0, 0, 0.15);
    position: relative;
    background-image: linear-gradient(135deg, rgba(74, 222, 128, 0.15), rgba(29, 123, 219, 0.1) 20%, var(--c-blue-700) 40%, var(--c-blue-700) 100%);
    cursor: pointer;
    transition: 1s;
    margin: 0 auto;
}

.price-table:after {
    opacity: 0;
}


.price-table:hover{
    transform: scale(1.1, 1.1);
    opacity: 1;
}

.price-table:after {
    content: "";
    display: block;
    top: -3px;
    left: -3px;
    bottom: -3px;
    right: -3px;
    z-index: -1;
    position: absolute;
    border-radius: 16px;
    background-image: linear-gradient(135deg, var(--c-green-400), var(--c-blue-500) 40%, var(--c-blue-300) 60%, var(--c-blue-700) 100%);
}
.price-table .price {
    font-size: 3rem;
    line-height: 1;
    font-weight: 700;
    display: inline-flex;
    align-self: center;
    align-items: center;
    gap: 4px;
    position: relative;
    color: #fff;
}
.price-table .price small {
    font-size: 1.25rem;
    font-weight: 400;
    position: absolute;
    left: -1.5ch;
}
.price-table .title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.25;
    text-align: center;
    margin-top: 16px;
    color: #fff;
}
.price-table .description {
    font-size: 1rem;
    text-align: center;
    margin-top: 4px;
}
.features {
    margin-top: 32px;
}
.feature {
    position: relative;
}
.feature + .feature {
    margin-top: 10px;
}
.feature summary {
    display: inline-flex;
    align-items: center;
    list-style: none;
    font-size: 14px;
}
.feature summary::-webkit-details-marker {
    display: none;
}
.feature[open] summary:after {
    content: "";
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: fixed;
    z-index: 50;
}
.feature[open] div {
    animation: scale 0.15s ease;
}
.feature .checkmark {
    width: 18px;
    height: 18px;
    border-radius: 50px;
    /* background-color: var(--c-green-400); */
    border: 1px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}
.feature .checkmark svg {
    width: 10px;
    height: 10px;
    color: #fff;
}
.feature .question-icon {
    display: flex;
    align-items: center;
    margin-left: 6px;
    cursor: pointer;
}
.feature .answer {
    padding: 12px;
    background-color: var(--c-blue-800);
    border-radius: 6px;
    position: absolute;
    top: -12px;
    z-index: 100;
    transform: translatey(-100%) translatex(-50%);
    transform-origin: bottom center;
    width: 80%;
    left: 50%;
    border: 1px solid var(--c-blue-300);
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.1);
}
@keyframes scale {
    0% {
        transform: translatey(-100%) translatex(-50%) scale(0);
}
    100% {
        transform: translatey(-100%) translatex(-50%) scale(1);
}
}

.table-responsive {
    mask-image: linear-gradient(to top, transparent, black),
    linear-gradient(to left, transparent 17px, black 17px);
    mask-size: 100% 20000px;
    mask-position: left bottom;
    -webkit-mask-image: linear-gradient(to top, transparent, black),
    linear-gradient(to left, transparent 17px, black 17px);
    -webkit-mask-size: 100% 20000px;
    -webkit-mask-position: left bottom;
    transition: mask-position 0.3s, -webkit-mask-position 0.3s;
    border-radius: 15px;
}
  
.table-responsive:hover {
    mask-position: left top;
    -webkit-mask-position: left top;
}
.price-section .row .col-md-4{
    padding-bottom: 35px;
}

/*Tablet Query*/
@media only screen and (min-width: 481px) and (max-width:768px) {
    .price-table{
        margin-bottom: 40px;
    }
}

/*Mobile Query*/
@media only screen and (max-width:500px) {
    .price-section .row .col-md-4{
        padding-left: 12px;
        padding-right: 0px;
        margin-bottom: 40px;
    }
    
    .price-table{
        width: 100%;
        margin: 0px;
    }
}