.primary-content>p:nth-last-child(-n+1) {
    display: none;
}
.btn{
    border-radius: 2rem;
}
.btn-group-sm>.btn,.btn-sm{
    padding: .5rem .5rem;
    border-radius: 2rem;
}
.card-header{
    background-color: inherit;
    border-bottom:1px solid rgba(0,0,0,.125);
}
.breadcrumb{
    background-color:inherit;
}
.breadcrumb-item+.breadcrumb-item::before{
    color: white;
}
.breadcrumb-item, .breadcrumb-item a{
    color: white;
}
.breadcrumb-item.active {
    color: white;
}
.list-group-item{
    border: none;
}
.primary-bg-color{
    background-color:inherit;
}
.master-breadcrumb{
    background-color:inherit;
    background: hsla(197, 100%, 63%, 1);
    background: linear-gradient(90deg, hsla(197, 100%, 63%, 1) 0%, hsla(294, 100%, 55%, 1) 100%);
    background: -moz-linear-gradient(90deg, hsla(197, 100%, 63%, 1) 0%, hsla(294, 100%, 55%, 1) 100%);
    background: -webkit-linear-gradient(21deg, hsla(197, 100%, 63%, 1) 0%, hsla(294, 100%, 55%, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#40C9FF", endColorstr="#E81CFF", GradientType=1 );
}
footer.footer{
    background-color:inherit;
    background: hsla(339, 100%, 55%, 1);
    background: linear-gradient(31deg, hsla(339, 100%, 55%, 1) 0%, hsla(197, 100%, 64%, 1) 100%);
    background: -moz-linear-gradient(90deg, hsla(339, 100%, 55%, 1) 0%, hsla(197, 100%, 64%, 1) 100%);
    background: -webkit-linear-gradient(31deg, hsla(339, 100%, 55%, 1) 0%, hsla(197, 100%, 64%, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#FF1B6B", endColorstr="#45CAFF", GradientType=1 );
}
.sidebar .list-group-item.active,.sidebar .list-group-item.active:focus,.sidebar .list-group-item.active:hover{
    background: hsla(217, 100%, 50%, 1);
    background: linear-gradient(45deg, hsla(217, 100%, 50%, 1) 0%, hsla(186, 100%, 69%, 1) 100%);
    background: -moz-linear-gradient(90deg, hsla(217, 100%, 50%, 1) 0%, hsla(186, 100%, 69%, 1) 100%);
    background: -webkit-linear-gradient(44deg, hsla(217, 100%, 50%, 1) 0%, hsla(186, 100%, 69%, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#0061FF", endColorstr="#60EFFF", GradientType=1 );
    border-color:#666
}
.home-domain-search .input-group-wrapper .btn{
    border-radius: 2rem!important;
}
header.header .logo-img {
    height: 48px;
}
footer.footer {
    padding: 10px 0 20px;
}
footer.footer .copyright {
    margin: 10px 0;
}

#order-standard_cart .sub-heading span {
    background-color: white;
}

.md-editor .btn {
    border-radius: 0.25rem;
}




#order-standard_cart .btn-checkout {
    /* width: 220px; */
    /* height: 50px; */
    /* border: none; */
    /* outline: none; */
    color: #fff;
    /* background: #111; */
    cursor: pointer;
    position: relative;
    z-index: 0;
    /* border-radius: 10px; */
}

#order-standard_cart .btn-checkout:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    /* border-radius: 10px; */
}

#order-standard_cart .btn-checkout:active {
    color: #000
}

#order-standard_cart .btn-checkout:active:after {
    background: transparent;
}

#order-standard_cart .btn-checkout:hover:before {
    opacity: 1;
}

#order-standard_cart .btn-checkout:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}




