/*********************/
/* Barra de progreso */
/*********************/
.progress {
    overflow: visible;
    position: relative;
    border-radius: 15px;
    margin: 30px 20% 20px 20%;
    height: 1rem;
}

.dot {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: absolute;
    height: 30px;
    width: 30px;
    top: -50%;
    background-color: silver;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.1);
    color: white;
    user-select: none;
}

.dot1 {
    left: -1%;
    background-color: #24BA89;
}

.dot2 {
    left: 50%;
    transform: translate(-50%);
}

.dot3 {
    left: 96%;
}

.p1 {
    border-radius: 15px;
}

@media (max-width: 460px) {
    .desc {
        font-size: 12px;
        margin: 0px 0px 20px 5% !important;
    }

    .progress {
        margin: 0px 10% 10px 10%;
    }
}

/*********************/
/*      General      */
/*********************/

.smHide {
    display: none;
}

.main-card {
    background-color: #FFF;
    padding: 2rem 2rem;
    border-radius: 0.5rem;
    border: 1px #E9EAEC solid;
}

.main-card>p {
    font-weight: 500;
    margin-bottom: 0rem;
}

.main-card>h4 {
    font-weight: 500;
}
.main-card > h5{
    font-weight: 500;
}
.main-card > h6{
    text-align: center;
}

.currentMethodsP {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

#asociatedCards {
    margin-bottom: 1rem;
}

.table.table-sm tbody tr td {
    padding: 0rem;
}

.btnContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
}

.currentMethods {
    padding: 0 0;
    margin-bottom: 2rem;
}

.paidSuscriptions {
    padding: 0 0;
}

.globalSection {
    margin-bottom: 1rem;
}

.globalSection .selectDiv {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.selectDiv select {
    max-width: 100%;
}

.selectDiv .serviceInfo {
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.serviceInfo span b {
    text-wrap: wrap;
}

.selectDiv.hoverable {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.selectDiv.hoverable:hover {
    background-color: #C2DAFF;
}

.multipleSelectContainer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.multipleSelectContainer select {
    width: 100%;
}

.showHideAnimation.showHideAnimation-show {
    height: auto;
    max-height: 20rem;
}

.showHideAnimation {
    overflow: hidden;
    max-height: 0;
    transition: all 0.4s ease-in-out;
}

.gradientSeparation {
    background: gray;
    background: linear-gradient(to right, transparent, #00094B, transparent);
    height: 2px;
}

.justify-end {
    justify-content: end !important;
}

@media (min-width: 666px) {
    .smHide {
        display: table-cell;
    }

    .btnContainer {
      flex-direction: row;
      justify-content: center;
    }

    .currentMethods {
        padding: 0 3rem;
    }

    .paidSuscriptions {
        padding: 0 3rem;
    }

    .globalSection .selectDiv {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1rem;
    }

    .selectDiv select {
        max-width: 12.5rem;
        min-width: 12.5rem;
        /* max-width: 50%; */
    }

    .deleteBtn {
        display: flex;
        justify-content: center;

    }

    .deleteLink {
        height: min-content;
    }

    .deleteLink:hover {
        color: #679CEB;
    }

    .multipleSelectContainer {
        display: flex;
        justify-content: end;
        flex-direction: row;
        gap: 2rem;
    }

    .multipleSelectContainer select {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .multipleSelectContainer {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

}
