.dgt-btn-green-bg,
.main-content a.dgt-btn-green-bg {
   display: inline-block;
   padding: 6px 25px;
   background-color: #41a743;
   color: #fff;
   font-size: 14px;
   border: none;
   text-decoration: none;
}

.dgt-btn-green-bg:hover,
.main-content a.dgt-btn-green-bg:hover {
    text-decoration: none;
    background-color: rgb(244, 121, 32);
    color: white;
    box-sizing: border-box;
    -webkit-transition: 0.5s;
       -moz-transition: 0.5s;
            transition: 0.5s;
}

.dgt-btn-green-bg:disabled {
    background-color: #ccc !important;
}

.dgt-btn-icon-small,
.dgt-btn-icon-big {
   text-align: center;
}

.dgt-btn-icon-small a,
.dgt-btn-icon-big a {
   display: block;
   border-bottom: 5px solid transparent;
}

.dgt-btn-icon-small a {
   padding: 20px;
}

.dgt-btn-icon-big a {
   padding: 65px 20px;
}

.dgt-btn-icon-small a img,
.dgt-btn-icon-big a img {
   width: 40px;
   height: 40px;
}

.dgt-btn-icon-small a span,
.dgt-btn-icon-big a span {
   color: #58595b;
   display: block;
   padding-top: 20px;
}

.dgt-btn-icon-small a:hover,
.dgt-btn-icon-big a:hover {
   text-decoration: none;
   transition: border-bottom-color 0.5s;
   border-bottom-color: #89bf42;
}

.dgt-btn-icon-small a:focus,
.dgt-btn-icon-big a:focus{
   text-decoration: none;
   outline: none;
}

.dgt-grey-bg {
   background-color: #e2e2e2
}

.dgt-white-bg{
   background-color: white;
}

.main-content .dgt-btn-green-border,
.main-content .dgt-btn-green-bg {
   display: inline-block;
   font-size: 14px;
   text-decoration: none;
   padding: 5px 25px;
}

.main-content a.dgt-btn-green-border {
   border: 1px solid #41a743;
   color: #41a743;
   background-color: white;
   border-radius: 3px;
}
.main-content a.dgt-btn-green-bg {
   background-color: #41a743;
   color: white;
   border: none;
}


.main-content a.dgt-btn-green-bg:hover,
.main-content a.dgt-btn-green-border:hover {
    text-decoration: none;
    background-color: rgb(244, 121, 32);
    box-sizing: border-box;
    -webkit-transition: 0.5s;
       -moz-transition: 0.5s;
            transition: 0.5s;
}

.main-content a.dgt-btn-green-border:hover {
    color: black;
}

.main-content a.dgt-btn-green-bg:hover,
.main-content a.dgt-btn-green-bg:visited {
    color: white;
}

#think-and-compare{
    color: white !important;
    margin:0 auto;
    font-weight: bold !important;
    padding-bottom: 20px;
}

#think-and-compare h3{
    color: #F78D1E;
}

#think-and-compare > .tools-compare .left-block,
#think-and-compare > .tools-compare .middle-block,
#think-and-compare > .tools-compare .right-block{
    display: inline-block !important;
}
#show-compare{
    margin: 10px auto;
}
#show-compare img{
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 520px;
}
.d-none{
    display: none!important;
}

#before-compare-table .button-list, #after-compare-table .button-list{
    display: flex;
    justify-self: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom:10px;
}
#before-compare-table .btn-outline-danger,
#before-compare-table .btn-outline-danger:hover,
#before-compare-table .btn-outline-danger:active{
    background: none;
    border: 1px solid #FE0000;
    color: #FE0000 !important;
    font-weight: bold;
}

#after-compare-table .btn-outline-primary,
#after-compare-table .btn-outline-primary:hover,
#after-compare-table .btn-outline-primary:active{
    background: none;
    border: 1px solid #0CB7DD;
    color: #0CB7DD !important;
    font-weight: bold;
}

#tools-compare .right-block  strong{
    color:#F78D1E;
    font-size: 1.25em;
}
.ul-list-compare-before{
    display: block;
    text-align: center;
    list-style: none;
    color: #FE0000;
    margin: 0 auto;
    margin-bottom: 10px;
    font-size: 21px;
    padding-left:0px;
}

.ul-list-compare-after{
    display: block;
    text-align: center;
    list-style: none;
    color: #0CB7DD;
    margin: 0 auto;
    margin-bottom: 10px;
    font-size: 21px;
    padding-left:0px;
}

.ul-list-compare-before li,
.ul-list-compare-after li{
    width: auto;
    padding-top: 10px;
    padding-bottom:10px;
}
/*
    Toggle checkbox
 */
input.toggle-round {
    display:none;
}
input.toggle-round + label {
    display: block;
    position: relative;
    cursor: pointer;

}
input.toggle-round + label {
    padding: 1px;
    width: 80px;
    height: 22px;
    background-color: black;
    border-radius: 15px;
    border: 2px solid #F78D1E;
}
input.toggle-round + label:after {
    display: block;
    position: absolute;
    content: "";
    width: 15px; height: 15px;
    background-color: white;
    border-radius: 100%;
    transition: margin 0.5s;
}
input.toggle-round:checked + label {
    background-color: black;
}
input.toggle-round:checked + label:after {
    background-color: #F78D1E;
    margin-left: 58px;
}
