.nav-link i {
    color: black;
}

.my-nav .nav-link {
    color: black;
    font-size: 15px
}

    .my-nav .nav-link:hover {
        color: gray;
        font-size: 15px
    }

    .my-nav .nav-link:hover {
        color: gray;
        font-size: 15px
    }

.my-container {
    padding-left: 0px;
    padding-right: 0px;
}

.max-lines {
    display: block; /* or inline-block */
    text-overflow: ellipsis;
    word-wrap: break-word;
    overflow: hidden;
    height: 55px;
    line-height: 1.8em;
}

/* Start Size Chart*/

.popup .overlay {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    z-index: 1;
    display: none;
}

.popup .content {
    position: absolute;
    top: 58%;
    left: 50%;
    transform: translate(-50%,-50%) scale(0);
    background: #fff;
    width: 95%;
    max-width: 800px;
    height: 580px;
    z-index: 2;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    font-family: "Open Sans",sans-serif;
    overflow-y: scroll;
}

.popup .close-btn {
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
    width: 30px;
    height: 30px;
    background: #222;
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
}

.popup.active .overlay {
    display: block;
}

.popup.active .content {
    transition: all 300ms ease-in-out;
    transform: translate(-50%,-50%) scale(1);
}

/* End Size Chart*/

@media (min-width: 400px) {
    .my-card {
        margin: 0;
        width: 50%;
        padding: 0px;
        margin: 0;
    }

    /* Start Size Chart*/
    @media only screen and (min-width: 400px) and (max-width: 600px) {
        .popup .overlay {
            position: fixed;
            top: 0px;
            left: 0px;
            width: 100vw;
            height: 100vh;
            background: rgba(0,0,0,0.7);
            z-index: 1;
            display: none;
        }

        .popup .content {
            position: absolute;
            top: 70%;
            left: 50%;
            transform: translate(-50%,-50%) scale(0);
            background: #fff;
            width: 95%;
            max-width: 800px;
            height: 630px;
            z-index: 2;
            text-align: center;
            padding: 20px;
            box-sizing: border-box;
            font-family: "Open Sans",sans-serif;
            overflow-y: scroll;
        }

        .popup .close-btn {
            cursor: pointer;
            position: absolute;
            right: 20px;
            top: 20px;
            width: 30px;
            height: 30px;
            background: #222;
            color: #fff;
            font-size: 25px;
            font-weight: 600;
            line-height: 30px;
            text-align: center;
            border-radius: 50%;
        }

        .popup.active .overlay {
            display: block;
        }

        .popup.active .content {
            transition: all 300ms ease-in-out;
            transform: translate(-50%,-50%) scale(1);
        }

        /* End Size Chart*/
    }