.coreDtls {
    padding: 20px;
    box-shadow: 1px 0px 20px 20px #f2f2f2;
}
span.coreVal {
    width: -webkit-fill-available;
    background: green;
    float: right;
    text-align: start;
    color: #fff;
    padding: 10px;
    margin: 10px;
}
.prodTitle{
	padding-bottom: 0px;
    width: -webkit-fill-available;
    text-align: start;
    font-weight: bold;
    line-height: 20px;
    margin-bottom: 5px;
}
a.imgURL {
    display: flex;
    justify-content: center;
    align-items: center;
}
.coreDtls span.title {
    background: royalblue;
    width: 100%;
    display: block;
    padding: 10px;
    color: #fff;
    font-weight: bold;
}
.selProduct {
    /*display: flex;
    justify-content: center;
    align-items: center;*/
    display: table;
    table-layout: fixed;
    width: 100%;
}
.productA, .productB {
    padding: 10px;
    text-align: center;
    width: 40%;
    display: table-cell;
    vertical-align: middle;
/*    width: -webkit-fill-available;*/
}
.btnCompare, .GCbtnCompare{
    float: right;
    margin-right: 10px !important;
    padding: 10px 28px !important;
}
.singleCoreData, .multiCoreData {
    padding: 10px;
    box-shadow: 1px 0px 20px 20px #f2f2f2;
}
.singleCoreData span.title, .multiCoreData span.title {
    width: 100%;
    display: block;
    background: royalblue;
    color: #fff;
    padding: 0px 10px;
    font-weight: bold;
    font-size: 25px;
    clear: both;
}
.single-box, .multi-box {
    padding: 5px 10px;
}

.compImg {
    width: 20%;
    padding-top: 2.5%;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
.compImg img{
    max-width: 100px;
}

.percentageNumbers {
    position: relative;
}
span.percentageData {
    position: absolute;
    left: 1%;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
}
.backgroundPercentage {
    width: 0;
    height: 25px;
    border-radius: 5px;
    background-color: #4169e1;
    background-size: 30px 30px;
    animation: move 2s linear infinite;
    box-shadow: 2px 0 10px inset rgba(0,0,0,0.2);
    transition: width 2s ease-out;
    display: block;
}

/*Lollipop background gradient animation*/
@keyframes move {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 30px 30px;
    }
}

table.custom-table-striped td{
    border: unset;
}
table.custom-table-striped td.prodImg img {
    width: 50px;
}

@media (max-width:767px){
    .selProduct{padding-bottom: 15px;}
    .productA, .productB, .compImg{
        display: table-row !important;
        width: 100% !important;
    }
    .compImg img{margin: 15px 0 !important;}
    table.custom-table-striped td {
        display: block;
        width: 100% !important;
        text-align: center;
    }
    .selProduct{
        flex-direction: column;
    }
    table.custom-table-striped td.prodImg {
        text-align: center;
    }
    table.custom-table-striped td.prodImg img {
        width: 70px;
    }
    table.custom-table-striped td.prodURL{
        display: none;
    }
    table.custom-table-striped tr {
        border-bottom: 1px solid #d3d3d3;
    }
    .compImg{
        padding-top: 0;
    }
}
/* @media (min-width: 992px){
    .container {
        width: 1200px !important;
        max-width: 100%;
    }
} */

@keyframes makeItfadeIn {
  100% {
    background-position: bottom left;
  }
}

.shareDtls, .GCshareDtls {
    display: flex;
    justify-content: end;
    padding: 0 0 10px 0;
    cursor: pointer;
    text-align: right;
    align-items: center;
    width: auto;
}
.shareDtls .fa-share-square, .GCshareDtls .fa-share-square{
    margin-right: 5px;
}

.loadoverlay {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgba(0,0,0,0.5);
    display:none;
    z-index: 99999;
}

.loadoverlay__inner {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.loadoverlay__content {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.lspinner {
    width: 75px;
    height: 75px;
    display: inline-block;
    border-width: 2px;
    border-color: rgba(255, 255, 255, 0.05);
    border-top-color: #fff;
    animation: spin 1s infinite linear;
    border-radius: 100%;
    border-style: solid;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/*Modal CSS*/
.custom_modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    z-index: 99999;
    font-family: Roboto, sans-serif;
}

.custom_modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 1rem 1.5rem;
    min-width: 28rem;
    max-width: 44rem;
    width: 100%;
    border-radius: 0.5rem;
}
@media (max-width: 762px){
    .custom_modal-content{
        width: 85% !important;
        min-width:94%;
        max-width:100%;
    }
}

.close-button {
    float: right;
    width: 1.5rem;
    line-height: 1.5rem;
    text-align: center;
    cursor: pointer;
    border-radius: 0.25rem;
    background-color: lightgray;
}

.close-button:hover {
    background-color: darkgray;
}

.show-modal {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

#cpu_a, #cpu_b {
    cursor: pointer;
}

.copyURL{
    float: right;
    margin-top: 10px !important;
}

.selProduct .chosen-container a.chosen-single {
    padding: 8px;
    height: 40px;
    border-radius: 20px;
    border: 1px solid #848484;
}
.selProduct .chosen-container.chosen-container-multi{
    padding: 8px;
    min-height: 40px;
    border-radius: 20px;
    border: 1px solid #848484;
    background: linear-gradient(#fff 20%,#f6f6f6 50%,#eee 52%,#f4f4f4 100%);
}
.selProduct .chosen-container-single .chosen-single div {
    top: 10px;
}

.selProduct .chosen-container a.chosen-single span, .selProduct .chosen-container.chosen-container-multi ul li.search-field {
    font-size: 16px;
    text-align: left;
    padding-left: 20px;

}
.selProduct .chosen-container.chosen-container-multi ul{
    border: unset;
    box-shadow: unset;
    background: transparent;
}

.selProduct .chosen-container.chosen-container-multi ul.chosen-choices li.search-field input[type=text]{
    color: inherit;
}

.selProduct .chosen-container.chosen-container-single.chosen-with-drop a.chosen-single, .selProduct .chosen-container.chosen-container-multi.chosen-with-drop{
    border-bottom-left-radius: unset;
    border-bottom-right-radius: unset;
}

.selProduct .chosen-container.chosen-container-single.chosen-with-drop .chosen-results, .selProduct .chosen-container.chosen-container-multi.chosen-with-drop .chosen-results{
    text-align: left;
}
.selProduct .chosen-container .chosen-drop{
    left: 0;
}


.productData {
    display: block;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px;
}
.productSingleData{padding-bottom: 10px;}

.leftCntnt, .rightCntnt {
    width: 50%;
    display: flex;
    align-items: center;
}
.prodCntnt{
width: calc(100% - (75px + 20px));
}
.prodImg {
    width: 75px;
}
.leftCntnt{
    padding-right: 20px;
}
.rightCntnt {
    border-left: 1px solid #999;
    padding-left: 20px;
    flex-direction: column;
}
.prodImg img {
    width: 100%;
}
.prodDtls {
    display: flex;
    justify-content: space-between;
/*    align-items: center;*/
}
.noInfo{
    padding: 10px 0;
}

div.prodDtls:not(:last-child) {
    border-bottom: 1px solid #d6d6d6;
}
.sorting-indicator-compare {
    display: block;
    width: 10px;
    height: 4px;
    margin-top: 5px;
    margin-left: 5px;
}
.sorting-indicator-compare:before {    
    font: normal 20px/1 dashicons;
    speak: never;
    display: inline-block;
    padding: 0;
    top: -6px;
    left: -6px;
    color: #3c434a;
    line-height: .5;
    position: relative;
    vertical-align: top;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-decoration: none!important;
    color: #3c434a;
}

.compare-asc:before{
    content: "\f142";
}
.compare-desc:before{
    content: "\f140";
}
.sortTable.active[data-sort="asc"] .compare-desc,
.sortTable.active[data-sort="desc"] .compare-asc{
    display: none !important;
}