@import url('../../../../common/css/fonts/inter/inter.css');

html,
body {
    font-family: 'Inter', sans-serif;
}

body {
    background: #F8F9FB;
}

header {
    height: 56px;
    display: flex;
    padding: 16px 32px;
    background: white;
    box-shadow: rgba(10, 31, 68, 0.1) 0px 3px 4px 0px, rgba(10, 31, 68, 0.08) 0px 0px 1px 0px;
}

.heading {
    margin-top: 48px;
}

.heading span {
    font-size: 56px;
    font-weight: 500;
}

.heading p {
    font-size: 20px;
    font-weight: 400;
}

main {
    width: 100%;
    max-width: 992px;
    margin: 0 auto;
}

.plan-wrapper {
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, .05);
    margin: 32px;
    overflow: hidden;
    box-shadow: 0 1px 15px rgba(27, 31, 35, .15);
    display: flex;
    flex-direction: column;
}

.plan-inner {
    background: white;
    overflow: auto;
    padding: 32px;
}

.plan-inner-2 {
    position: relative;
    min-height: 450px;
}

.plan-inner.dark {
    background: #032f62;
    color: white;
}

.plan-inner h3 {
    font-size: 20px;
    font-weight: 400;
    margin: 0;
}

.plan-inner h4 {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

.plan-inner h3.pricing {
    font-size: 48px;
    font-weight: 500;
    margin: 8px 0;
}

.plan-inner h3.pricing span {
    font-size: 75%;
    position: relative;
    top: -8px;
    right: -8px;
}

.plan-inner p {
    margin-top: 16px;
    font-size: 12px;
    color: #586069;
}

.plan-inner ul {
    margin-top: 32px;
    list-style: none;
    /* text-align: left; */
    padding: 0;
}

.plan-inner ul li {
    margin-bottom: 4px;
    /* padding-left: 24px; */
}

.plan-inner ul li:first-child {
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    padding-bottom: 6px;
    margin-bottom: 10px;
}

.plan-inner .plan-button {
    margin-top: 32px;
    background-color: #1277eb;
    border: 1px solid #1277eb;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    padding: 16px 24px;
    width: 100%;
    transition: .2s;
    user-select: none;
    vertical-align: middle;
    white-space: nowrap;
    position: absolute;
    bottom: 0;
    left: 0;
}

.plan-inner .plan-button:hover {
    background-color: #0366d6;
    border-color: #0366d6;
    text-decoration: none;
}

.plan-inner .plan-button:disabled {
    cursor: not-allowed;
    background-color: #65adff;
    border: 1px solid #3f98ff;
}

.align-center {
    text-align: center;
}

.success-box {
    background: white;
    width: 600px;
    border-radius: 4px;
    margin: 64px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 48px;
}

.success-img img {
    width: 250px;
    margin-bottom: 32px;
}

.success-content {
    color: #505C6E;
    text-align: center;
}

.success-content h2 {
    font-weight: 500;
}

/* Flecha */
.popup-container {
    width: 285px;
    position: fixed;
    z-index: 20;
    background: rgba(0, 0, 0, 0.82);
    color: white;
    border-radius: 4px;
    display: none;
}

.popup-flex {
    display: flex;
    justify-content: center;
}

.popup-flex > div {
    padding: 10px;
}

.popup-container img {
    width: 87px;
    margin: auto;
    -webkit-animation: arrow-move .8s ease infinite;
    animation: arrow-move .8s ease infinite;
}

@media (max-width : 1200px) {
    .popup-container {
        width: 353px;
        left: calc(100% - 353px);
    }
}

@-webkit-keyframes arrow-move {

    0%,
    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }

    50% {
        -webkit-transform: translateX(-4px);
        transform: translateX(-4px);
    }
}

@keyframes arrow-move {

    0%,
    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }

    50% {
        -webkit-transform: translateX(-4px);
        transform: translateX(-4px);
    }
}

@-webkit-keyframes arrow-move-down {

    0%,
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    50% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-4px);
    }
}

@keyframes arrow-move-down {

    0%,
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    50% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-4px);
    }
}