﻿.product_link1,
.product_link2 {
    text-decoration: none !important;
    border: 1px solid #ddd !important;
    transition: all .2s linear;
    box-shadow: 0 1px 5px rgba(0,0,0, .1)
}

.partriskbox:hover {
    border-color: #bd1547 !important;
}

.partriskbox {
    color: #bd1547 !important;
}

.supplychainwatchbox:hover {
    border-color: #2365ce !important
}

.supplychainwatchbox {
    color: #2365ce !important
}

.supplyinsightwatchbox:hover {
    border-color: #4242ba !important
}

.supplyinsightwatchbox {
    color: #4242ba !important
}
#snackbar {
    visibility: hidden; /* Hidden by default. Visible on click */
    min-width: 250px; /* Set a default minimum width */
    margin-left: -125px; /* Divide value of min-width by 2 */
    color: #fff; /* White text color */
    text-align: center; /* Centered text */
    border-radius: 2px; /* Rounded borders */
    padding: 16px; /* Padding */
    position: fixed; /* Sit on top of the screen */
    z-index: 1; /* Add a z-index if needed */
    right: 1%;
    top: 60px;
}

    /* Show the snackbar when clicking on a button (class added with JavaScript) */
    #snackbar.show {
        visibility: visible; /* Show the snackbar */
        /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
        -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
        animation: fadein 0.5s, fadeout 0.5s 2.5s;
    }
/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }

    to {
        top: 60px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }

    to {
        top: 60px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        top: 60px;
        opacity: 1;
    }

    to {
        top: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        top: 60px;
        opacity: 1;
    }

    to {
        top: 0;
        opacity: 0;
    }
}

.Concurrentcard {
    position: absolute;
    top: 58%;
    left: 50%;
    transform: translate(-50%, -40%);
    background-color: white;
    border-radius: 6px;
    min-width: 400px;
    max-width: 600px;
    padding: 30px 35px;
    box-shadow: 0 0 20px 0 rgba(117, 117, 117, 0.1);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.Concurrenttitle {
    font-size: 22px;
    font-weight: 500;
    color: hsl(206 24.0% 9.0%);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.Concurrentdescription {
    font-size: 16px;
    color: hsl(206 6.0% 43.5%);
    line-height: 1.3;
}

.Concurrentrow {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-top: 1px solid #E5E5E5;
    padding: 15px 20px;
    color: hsl(206 24.0% 9.0%);
    font-size: 14px;
}

.Concurrentrow:last-child {
        border-bottom: 1px solid #E5E5E5;
    }

.Concurrentbutton {
    background: white;
    border: 1px solid hsl(205 10.7% 78.0%);
    padding: 0px 12px;
    height: 30px;
    border-radius: 4px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    gap: 8px;
    user-select: none;
    color: hsl(206 24.0% 9.0%);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.Concurrentbutton:hover, button.active {
        background: hsl(210 16.7% 97.6%);
        border-color: hsl(206 6.0% 56.1%);
    }

