/** PLAN CARDS **/
.plan_cards,
.plan_cards * {
    box-sizing: border-box;
}
.plan_cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1160px;
    margin: auto;
    padding-top: 10px;
}
.plan_cards.collapsed {
    overflow: hidden;
    max-height: 460px;
}

.business .plan_card_wrapper.business {
    display: inline-flex;
}
.personal .plan_card_wrapper.personal {
    display: block;
}
.monthly .plan_card .plan_pricedesc:not(.free) {
    visibility: hidden;
}
.monthly .plan_button.monthly,
.annual .plan_button.annual {
    display: inline-block;
}
.monthly .plan_button.annual,
.annual .plan_button.monthly {
    display:none;
}

.plan_limited,
.top_bar {
    height: 40px;
    width: 100%;
    position: absolute;
    z-index: 1;
    top: -20px;
    border-top-left-radius: 15px;
    -moz-border-top-left-radius: 15px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    -moz-border-top-right-radius: 15px;
    border-top-right-radius: 15px;
    display: none;
    padding-left: 15px;
    padding-right: 10px;
    justify-content: space-between;
}
.top_bar {
    display: flex;
    justify-content: center;
}
.plan_limited {
    background: #FFC400;
}
.plan_limited_desc {
    height: 20px;
    line-height: 22px;
    display: inline-block;
}
.plan_limited_time {
    height: 20px;
    line-height: 22px;
    letter-spacing: 5px;
}
.top_bar_desc {
    height: 20px;
    line-height: 22px;
    display: inline-block;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
    color: white !important;
}

.plan_card_wrapper {
    display: none;
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 12%);
    margin: 20px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    width: 250px;
    min-height: 270px;
    position: relative;
    transition: 0.3s ease;
}
.plan_card_wrapper:hover {
    transform: scale(1.05);
}

.plan_card {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    width: 250px;
    min-height: 270px;
    position: relative;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    border: 2px solid transparent;
    text-align: center;
    flex-shrink: 0;
    z-index: 2;
    background: white;
    height: 100%;
}
.highlighted .plan_card {
    border: 2px solid #1389FE;
}
.ribbon {
    position: absolute;
    right: -2px;
    top: -2px;
    z-index: 1;
    width: 75px;
    height: 75px;
    -webkit-border-radius: 0 15px 0 0;
    -moz-border-radius: 0 15px 0 0;
    border-radius: 0 15px 0 0;
    overflow: hidden;
}
.ribbon span {
    position: absolute;
    top: -53px;
    right: -53px;
    display: block;
    width: 105px;
    height: 105px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    line-height: 185px;
    box-sizing: border-box;
    font-size: 10px;
    font-weight: bold;
    color: white !important;
    text-transform: uppercase;
    text-align: center;
}
.ribbon span.dark {
    color: unset !important;
}
.plan_card .plan_desc {
    height: 93px;
    width: 150px;
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 19PX;
    justify-content: center;
}
.plan_card .plan_title {
    font-family: "UniviaProBold", Roboto, sans-serif !important;
    font-size: 18px;
    line-height: 22px;
    width: 225px;
    letter-spacing: 1.1px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.plan_card .plan_subtitle {
    font-size: 14px;
    height: 14px;
    margin: 15px 0;
}
.plan_card .plan_pricedesc {
    font-size: 12px;
    line-height: 26px;
    height: 24px;
    color: #929394 !important;
}
.plan_card .plan_pricedesc.free {
    font-size: 18px;
    color: unset !important;
    letter-spacing: 1px;
    position: relative;
    top: -85px;
}
.plan_button_wrapper {
    position: relative;
}
.plan_button {
    background: #F0F7FF;
    color: #1389FE !important;
    cursor: pointer;
    display: none;
    border-radius: 8px;
    width: 180px;
    text-align: center;
    font-size: 14px;
    height: 42px;
    width: 204px;
    line-height: 42px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: 0.5s ease;
}
.plan_button b {
    color: #1389FE !important;
}
.plan_card_wrapper:hover .plan_button,
.plan_button:hover {
    background: #1389FE; 
    color: white !important;
}
.plan_card_wrapper:hover .plan_button b,
.plan_button:hover b {
    color: white !important;
}

.plan_button.additional{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px !important;
}
.plan_button.dark {
    background: #1389FE;
    color: white !important;
    letter-spacing: unset;
}
.plan_card_wrapper:hover .plan_button.dark,
.plan_button.dark:hover {
    background: #0066CC;
}

.plan_button.hover {
    opacity: 0;
    transition: opacity 0.5s ease;
    position: absolute;
    z-index: 1;
    color: white !important;
    background: #1389FE;
    top: 0;
    right: 0;
    letter-spacing: 0;
    margin-top: 0;
}
.plan_button.hover b {
    color: white !important;
}
.plan_card_wrapper:hover .plan_button .hover,
.plan_card_wrapper:hover .plan_button.hover,
.plan_button:hover .hover,
.plan_button.hover:hover {
    opacity: 1;
}
.plan_button.red {
    color: white !important;
    background: #EE2B3A;
    transition: 0.5s ease;
    font-weight: bold;
}
.plan_button.red b {
    color: white !important;
}
.plan_card_wrapper:hover .plan_button.red,
.plan_button.red:hover {
    background: #F75A20;
}
.plan_button.red.logged {
    background: white;
    color: #1A2533 !important;
    border: 2px solid #EE2B3A;
    transition: 0.5s ease;
    font-weight: bold;
    display: none;
}
.plan_button.red.logged b {
    color: #1A2533 !important;
}
.plan_card_wrapper:hover .plan_button.red.logged,
.plan_button.red.logged:hover {
    border: 2px solid #F75A20;
}
.plan_button.buttonwithoutprice {
    display: inline-block;
}
.highlighted .plan_button {
    color: white !important;
    background: #1389FE;
}
.plan_card_wrapper:hover.highlighted .plan_button,
.highlighted .plan_button:hover {
    color: white !important;
    background: #2D3D52;
}
.highlighted .plan_button b {
    color: white !important;
}
.plan_bullets {
    margin: 5px 0;
    width: 204px;
    text-align: left;
}
.plan_bullet {
    display: flex;
    align-items: center;
    padding: 5px 0;
}
.plan_bullet img {
    margin-right: 10px;
}
.plan_bullet span {
    font-size: 14px;
}
.plan_card .plan_findout_button {
    height: 37px;
    margin-top: auto;
    width: calc(100% + 4px);
}
.plan_card .plan_findout_button a {
    line-height: 37px;
    font-size: 12px;
    color: #1A2533 !important;
    text-decoration: none !important;
}
.highlighted .plan_card .plan_findout_button {
    width: 100%;
}
.plan_card .plan_findout_button img{
    height: 14px;
    margin-left: 2px;
    display: none;
}
.plan_card .plan_findout_button.scroll img {
    display: inline-block;
}
.see_more_button {
    cursor: pointer;
    text-align: center;
    border: 2px solid black;
    border-radius: 5px;
    min-width: 180px;
    padding: 0 50px;
    width: fit-content;
    height: 50px;
    line-height: 46px;
    margin: auto;
    margin-top: 30px;
    box-sizing: border-box;
    transition: 0.3s ease;
}
.see_more_button:hover {
    transform: scale(1.05);
}
.see_more_button div,
.see_more_button a {
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    font-family: "UniviaProBold", Roboto, sans-serif !important;
    text-decoration: none;
    color: #1A2533 !important;
}
#see_more.see_more_button div {
    text-transform: uppercase;
    font-family: Roboto, sans-serif !important;
    font-weight: bold;
}
.see_more_button img {
    margin-left: 5px;
    height: 10px;
}
#see_more.see_more_button img {
    height: 19px;
}
#see_more div.collapsed {
    display: none;
}
#see_more.collapsed div {
    display: none;
}
#see_more:not(.collapsed) img {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
#see_more.collapsed div.collapsed {
    display: inline-block;
}
/**************/