﻿.table-users {
    border: 1px solid #327a81;
    border-radius: 10px;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
    max-width: calc(100% - 2em);
    margin: 1em auto;
    overflow: hidden;
    width: 100%;
}

.tabel_cotatii .bonusMalusStyle {
    font-style: italic;
    font-size: 13px;
}

.tabel_cotatii .informatii_suplimentare ul li {
    font-size: 11px;
    text-align: start;
}

.tabel_cotatii .informatii_suplimentare label {
    font-size: 14px;
    margin-left: 40px;
}

.tabel_cotatii .informatii_suplimentare p {
    font-size: 10px;
}

table {
    width: 100%;
}

    table header {
        background-color: #327a81;
        color: white;
        font-size: 1.5em;
        padding: 1rem;
        text-align: center;
        text-transform: uppercase;
    }

    table td, table th {
        color: #2b686e;
        padding: 10px;
    }

    table td {
        text-align: center;
        vertical-align: middle;
    }

        table td:last-child {
            font-size: 0.95em;
            line-height: 1.4;
            text-align: left;
        }

    table th {
        background-color: #daeff1;
        font-weight: bold;
    }

    table tr:nth-child(2n) {
        background-color: white;
    }

    table tr:nth-child(2n+1) {
        background-color: #edf7f8;
    }

@media screen and (max-width: 700px) {
    /*table, tr, td {
        display: block;
    }*/

    td:first-child {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100px;
    }

    td:not(:first-child) {
        clear: both;
        margin-left: 100px;
        padding: 4px 20px 4px 90px;
        position: relative;
        text-align: left;
    }

        td:not(:first-child):before {
            color: #91ced4;
            content: '';
            display: block;
            left: 0;
            position: absolute;
        }

    /*td:nth-child(2):before {
            content: 'Name:';
        }

        td:nth-child(3):before {
            content: 'Email:';
        }

        td:nth-child(4):before {
            content: 'Phone:';
        }

        td:nth-child(5):before {
            content: 'Comments:';
        }*/

    tr {
        padding: 10px 0;
        position: relative;
    }

    /*tr:first-child {
            display: none;
        }*/
}

@media screen and (max-width: 500px) {
    /*.header {
        background-color: transparent;
        color: #fff;
        font-size: 2em;
        font-weight: 700;
        padding: 0;
        text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
    }*/

    td:first-child {
        background-color: #c8e7ea;
        border-bottom: 1px solid #91ced4;
        border-radius: 10px 10px 0 0;
        position: relative;
        top: 0;
        transform: translateY(0);
        width: 100%;
    }

    td:not(:first-child) {
        margin: 0;
        padding: 5px 1em;
        width: 100%;
    }

        td:not(:first-child):before {
            font-size: 0.8em;
            padding-top: 0.3em;
            position: relative;
        }

    td:last-child {
        padding-bottom: 1rem !important;
    }

    tr {
        background-color: white !important;
        border: 1px solid #6cbec6;
        border-radius: 10px;
        box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
        margin: 0.5rem 0;
        padding: 0;
    }

    .table-users {
        border: none;
        box-shadow: none;
        overflow: visible;
    }
}

.hovertext {
    position: relative;
}

    .hovertext:before {
        content: attr(data-hover);
        visibility: hidden;
        opacity: 0;
        width: 140px;
        background-color: black;
        color: #fff;
        text-align: center;
        border-radius: 5px;
        padding: 5px 0;
        transition: opacity 1s ease-in-out;
        position: absolute;
        z-index: 1;
        left: 0;
        top: 110%;
    }

    .hovertext:hover:before {
        opacity: 1;
        visibility: visible;
    }

.mytooltip {
    display: inline;
    position: relative;
    z-index: 999
}

    .mytooltip .tooltip-item {
        background: rgba(0, 0, 0, 0.1);
        cursor: pointer;
        display: inline-block;
        font-weight: 500;
        padding: 0 10px
    }

    .mytooltip .tooltip-content {
        position: absolute;
        z-index: 9999;
        width: 360px;
        margin: 0 0 20px -180px;
        bottom: 100%;
        text-align: left;
        font-size: 14px;
        line-height: 30px;
        -webkit-box-shadow: -5px -5px 15px rgba(48, 54, 61, 0.2);
        box-shadow: -5px -5px 15px rgba(48, 54, 61, 0.2);
        background: #2b2b2b;
        opacity: 0;
        cursor: default;
        pointer-events: none
    }

        .mytooltip .tooltip-content::after {
            content: '';
            top: 100%;
            border: solid transparent;
            height: 0;
            width: 0;
            position: absolute;
            pointer-events: none;
            border-color: #2a3035 transparent transparent;
            border-width: 10px;
        }
        .mytooltip .tooltip-content-1::after {
            transform: translateX(30%);
            margin-left: 35px
        }
        .mytooltip .tooltip-content-2::after {
            margin-left: 150px
        }

        .mytooltip .tooltip-content img {
            position: relative;
            display: block;
            float: left;
            margin-right: 1em
        }

    .mytooltip .tooltip-item::after {
        content: '';
        position: absolute;
        width: 360px;
        height: 20px;
        bottom: 100%;
        left: 50%;
        pointer-events: none;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%)
    }

    .mytooltip:hover .tooltip-item::after {
        pointer-events: auto
    }

    .mytooltip:hover .tooltip-content {
        pointer-events: auto;
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0) rotate3d(0, 0, 0, 0deg);
        transform: translate3d(0, 0, 0) rotate3d(0, 0, 0, 0deg)
    }

    .mytooltip:hover .tooltip-content2 {
        opacity: 1;
        font-size: 18px
    }

    .mytooltip .tooltip-text {
        font-size: 14px;
        line-height: 24px;
        display: block;
        padding: 1.31em 1.21em 1.21em 0;
        color: #fff
    }

.page {
    padding: 50px 80px;
    margin: 50px;
    background: white;
    min-width: 500px;
}

#terms-and-conditions {
    font-size: 14px;
}

    #terms-and-conditions h1 {
        font-size: 34px;
    }

    #terms-and-conditions ul {
        counter-reset: item;
    }

    #terms-and-conditions li {
        display: block;
        margin: 20px 0;
        position: relative;
    }

        #terms-and-conditions li:before {
            position: absolute;
            top: 0;
            margin-left: -50px;
            color: #00b2ce;
            content: counters(item, ".") " ";
            counter-increment: item;
        }

.container-load {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.load-container {
    position: relative;
    display: inline-block;
    width: 130px;
    height: 130px;
    overflow: hidden;
    letter-spacing: normal;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
}

.linespinner {
    width: 10px;
    height: 30px;
    background: #74a4ff;
    position: relative;
    animation: linespinner 1s ease-in-out infinite;
    animation-delay: 0.4s;
    border-radius: 8px;
}

    .linespinner:after,
    .linespinner:before {
        border-radius: 8px;
        content: "";
        position: absolute;
        width: 10px;
        height: 30px;
        background: #74a4ff;
        animation: linespinner 1s ease-in-out infinite;
    }

    .linespinner:before {
        right: 18px;
        animation-delay: 0.15s;
    }

    .linespinner:after {
        left: 18px;
        animation-delay: 0.6s;
    }

@keyframes linespinner {
    0%, 100% {
        background-color: #74a4ff;
        box-shadow: 0 0 0 #74a4ff, 0 0 0 #74a4ff;
    }

    50% {
        background-color: #0052ec;
        box-shadow: 0 -15px 0 #0052ec, 0 15px 0 #0052ec;
    }
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 10; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    padding-left: 10%;
    padding-right: 10%;
}
    .modal p {
        margin: 10px 0 10px 10px;
    }

/* Modal Content/Box */
.modal-content {
    top: 50%;
}

.content-list-idd {
    --bg: #fdfdfd;
    --highlight1: #ED4264;
    --highlight2: #FFEDBC;
    --color: #1a1e24;
    --font-number: Montserrat, Roboto, Helvetica, Arial, sans-serif;
    --font-head: "Space Mono", Consolas, Menlo, Monaco, "Courier New", monospace;
    --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.list-idd {
    list-style: none;
}

.item-idd {
    display: block;
    clear: both;
    counter-increment: list;
    padding-bottom: 4rem;
    font-size: 1.1rem;
    line-height: 1.375;
    position: relative;
}

    .item-idd:before {
        font: bold 2.25rem/1 var(--font-number);
        content: counter(list);
        width: 5rem;
        height: 5rem;
        float: left;
        margin: 0 1.5rem 0.75rem 0;
        color: var(--bg);
        background: var(--highlight1) linear-gradient(to bottom right, var(--highlight1) 25%, var(--highlight2));
        text-shadow: 0 0 2px var(--highlight1);
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        shape-outside: ellipse();
        z-index: 1;
    }

    .item-idd:after {
        width: 2.5rem;
        height: 2.5rem;
        position: absolute;
        top: 0;
        left: 0;
        content: "";
        background: var(--highlight1);
        z-index: -1;
        border-top-left-radius: 3px;
    }


.headline-idd {
    padding: 0rem 0 50px 0;
    margin: 0 0 1rem 0;
    font: normal 2rem var(--font-head);
}

.card {
    border: none;
}

.card-img {
    border-radius: 0;
}

.vgr-cards .card {
    display: flex;
    flex-flow: wrap;
    flex: 100%;
    margin-bottom: 40px;
}

    .vgr-cards .card:nth-child(even) .card-img-body {
        order: 2;
    }

    .vgr-cards .card:nth-child(even) .card-body {
        padding-left: 0;
        padding-right: 1.25rem;
    }

@media (max-width: 576px) {
    .vgr-cards .card {
        display: block;
    }
}

.vgr-cards .card-img-body {
    flex: 1;
    overflow: hidden;
    position: relative;
    padding-top: 40px;
}

@media (max-width: 576px) {
    .vgr-cards .card-img-body {
        width: 100%;
        height: 200px;
        margin-bottom: 20px;
    }
}

.vgr-cards .card-img {
    width: 100%;
    height: auto;
    position: absolute;
    margin-left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 1140px) {
    .vgr-cards .card-img {
        margin: 0;
        transform: none;
        width: 100%;
        height: auto;
    }
}

.vgr-cards .card-body {
    flex: 2;
    padding: 0 0 0 1.25rem;
}

@media (max-width: 576px) {
    .vgr-cards .card-body {
        padding: 0;
    }
}

:root {
    --color-text: #616161;
    --color-text-btn: #ffffff;
    --card1-gradient-color1: #f12711;
    --card1-gradient-color2: #f5af19;
    --card2-gradient-color1: #7F00FF;
    --card2-gradient-color2: #E100FF;
    --card3-gradient-color1: #3f2b96;
    --card3-gradient-color2: #a8c0ff;
    --card4-gradient-color1: #11998e;
    --card4-gradient-color2: #38ef7d;
}

.card-wrap {
    background: #fff;
    border-radius: 20px;
    border: 5px solid #fff;
    overflow: hidden;
    color: var(--color-text);
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    cursor: pointer;
    transition: all .2s ease-in-out;
}

.card-wrap-header {
    height: 200px;
    width: 100%;
    background: red;
    border-radius: 100% 0% 100% 0% / 0% 50% 50% 100%;
    display: grid;
    place-items: center;
}

    .card-wrap-header i {
        color: #fff;
        font-size: 72px;
    }

.card-wrap-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.card-wrap-title {
    text-align: center;
    text-transform: uppercase;
    font-size: 24px;
    margin-top: 10px;
    margin-bottom: 20px;
    font-weight: bold;
}

.card-wrap-text {
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.card-wrap-btn {
    border: none;
    border-radius: 100px;
    padding: 5px 30px;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.card-wrap-header.one {
    background: linear-gradient(to bottom left, var(--card1-gradient-color1), var(--card1-gradient-color2));
}

.card-wrap-header.two {
    background: linear-gradient(to bottom left, var(--card2-gradient-color1), var(--card2-gradient-color2));
}

.card-wrap-header.three {
    background: linear-gradient(to bottom left, var(--card3-gradient-color1), var(--card3-gradient-color2));
}

.card-wrap-header.four {
    background: linear-gradient(to bottom left, var(--card4-gradient-color1), var(--card4-gradient-color2));
}

.card-wrap-btn.one {
    background: linear-gradient(to left, var(--card1-gradient-color1), var(--card1-gradient-color2));
}

.card-wrap-btn.two {
    background: linear-gradient(to left, var(--card2-gradient-color1), var(--card2-gradient-color2));
}

.card-wrap-btn.three {
    background: linear-gradient(to left, var(--card3-gradient-color1), var(--card3-gradient-color2));
}

.card-wrap-btn.four {
    background: linear-gradient(to left, var(--card4-gradient-color1), var(--card4-gradient-color2));
}

@media only screen and (max-width: 992px) {
    .btnCuDecontare {
        margin-left: 0px;
    }

    .btnFaraDecontare {
        margin-right: 0px;
    }
}

@media only screen and (min-width: 993px) {
    .btnCuDecontare {
        margin-left: 20px;
    }

    .btnFaraDecontare {
        margin-right: 20px;
    }
}

.input-with-image {
    position: relative;
}

    .input-with-image input[type="text"] {
        padding-right: 40px; /* lățimea imaginii plus puțin spațiu */
    }

    .input-with-image img {
        position: absolute;
        top: 50%;
        right: 5px;
        transform: translateY(-50%);
        width: 30px;
        height: 30px;
    }

.ul-codPostal {
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    max-height: 200px; /* limita de inaltime */
    overflow-y: auto; /* adauga bara de derulare verticala */
}

.li-codPostal {
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
}

.li-codPostal:hover {
    background-color: #eee;
}