/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

.colorgreen{color:darkgreen;}
.colorred{color:darkred;}

.cv-post-content,.cv-post-title { display: none; }



//Glowing Button
.example_g {
    font-family: 'Poppins';
    width: 320px;
    height: 50px;
    border: none;
    outline: none;
    color: #494949;
    background: darkorange;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 4px;
    cursor: pointer;
    position: relative;
    z-index: 0;
    transition: 0.5s ease-in-out;
}

.example_g:before {
    content: '';
    background: linear-gradient(45deg, #FF0000, #FFF700, #FF7000, #FF00FE, #3FF4EB, #9E00FF, #00BEFF, #FF00DD, #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;
}

.example_g:active {
    color: #000
}

.example_g:active:after {
    background: transparent;
}

.example_g:hover {
    transform: scale(1.05);
}

.example_g:hover:before {
    opacity: 1;
}

.example_g:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ffffff;
    left: 0;
    top: 0;
}

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

//Blue button
.button-65 {
  appearance: none;
  backface-visibility: hidden;
  background-color: #000;
  border-radius: 10px;
  border-style: none;
  box-shadow: none;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: Inter,-apple-system,system-ui,"Segoe UI",Helvetica,Arial,sans-serif;
  font-size: 16px;
  font-weight: 900;
  height: 50px;
  letter-spacing: normal;
  line-height: 1.5;
  outline: none;
  overflow: hidden;
  padding: 14px 30px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transform: translate3d(0, 0, 0);
  transition: all .3s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: top;
  white-space: nowrap;
}

.button-65:hover {
  background-color: #1366d6;
  box-shadow: rgba(0, 0, 0, .05) 0 5px 30px, rgba(0, 0, 0, .05) 0 1px 4px;
  opacity: 1;
  transform: translateY(0);
  transition-duration: .35s;
}

.button-65:hover:after {
  opacity: .5;
}

.button-65:active {
  box-shadow: rgba(0, 0, 0, .1) 0 3px 6px 0, rgba(0, 0, 0, .1) 0 0 10px 0, rgba(0, 0, 0, .1) 0 1px 4px -1px;
  transform: translateY(2px);
  transition-duration: .35s;
}

.button-65:active:after {
  opacity: 1;
}

//ratings
@media only screen and (max-width: 600px) {
	#ratings strong{font-size:0.5em;}
}
	#ratings strong{font-size:0.7em;}

.procobox{background-color:#fff;border:1px solid #000;padding:0.5em;}
.recommended{
	color:#fff;
	background-color:darkgreen;
}
.notrecommended{
	color:#fff;
	background-color:darkred;
}
.notrated{
	color:#fff;
	background-color:darkgray;
}
.okay{
	color:#fff;
	background-color:#CD5A00;
}
/* Homepage buttons */
.cssbuttons-io-button {
 background: #313030;
 color: white;
 font-family: inherit;
 padding: 0.35em;
 padding-left: 1.2em;
 font-size: 17px;
 font-weight: 500;
 border-radius: 0.9em;
 border: none;
 letter-spacing: 0.05em;
 display: flex;
 align-items: center;
 box-shadow: inset 0 0 1.6em -0.6em #313030;
 overflow: hidden;
 position: relative;
 height: 2.8em;
 padding-right: 3.3em;
 margin-bottom:0.5em;
	width:100%;
}

.cssbuttons-io-button .icon {
 background: white;
 margin-left: 1em;
 position: absolute;
 display: flex;
 align-items: center;
 justify-content: center;
 height: 2.2em;
 width: 2.2em;
 border-radius: 0.7em;
 box-shadow: 0.1em 0.1em 0.6em 0.2em #313030;
 right: 0.3em;
 transition: all 0.3s;
}

.cssbuttons-io-button:hover .icon {
 width: calc(100% - 0.6em);
}

.cssbuttons-io-button .icon svg {
 width: 1.1em;
 transition: transform 0.3s;
 color: #313030;
}

.cssbuttons-io-button:hover .icon svg {
 transform: translateX(0.1em);
}

.cssbuttons-io-button:active .icon {
 transform: scale(0.95);
}


/*Circular percentage images*/
.flex-wrapper {
  display: flex;
  flex-flow: row nowrap;
}

.single-chart {
  width: 100%;
  justify-content: space-around ;
}

.circular-chart {
  display: block;
  margin: 10px auto;
  max-width: 80%;
  max-height: 250px;
}

.circle-bg {
  fill: none;
  stroke: #eee;
  stroke-width: 3.8;
}

.circle {
  fill: none;
  stroke-width: 2.8;
  stroke-linecap: round;
  animation: progress 1s ease-out forwards;
}

@keyframes progress {
  0% {
    stroke-dasharray: 0 100;
  }
}

.circular-chart.orange .circle {
  stroke: #ff9f00;
}

.circular-chart.green .circle {
  stroke: #4CC790;
}

.circular-chart.blue .circle {
  stroke: #3c9ee5;
}

.circular-chart.purple .circle {
  stroke: #9F2B68;
}

.circular-chart.red .circle {
  stroke: red;
}

.circular-chart.gray .circle {
  stroke: gray;
}

.percentage {
  fill: #666;
  font-family: sans-serif;
  font-size: 0.5em;
  text-anchor: middle;
	font-weight:bold;
}

/* Style the button that is used to open and close the collapsible content */
.collapsible {
  background-color: #444;
  color: #fff;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
	font-weight:bold;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .collapsible:hover {
  background-color: #444;
}

/* Style the collapsible content. Note: hidden by default */
.content {
  padding: 0 18px;
  display: none;
  margin-bottom:1em;
  overflow: hidden;
  background-color: #fff;
}
.collapsible:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: white;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}

.buybuttons{
	padding:1em;
	text-decoration:none;
	background-color:yellow;
	color:#000;
	border:1px solid #000;
	font-weight:bold;
	font-size:0.8em;
}

/****NEW SEARCH/COMPARE FORM****/
.inside-article{
	min-height:800px;
}
.filters{
	text-decoration:none;
	font-weight:bold;
	font-size:1.3em;
	background-color:black;
	color:#000;
	padding:0.5em;
	border:2px solid #fff;
	margin-bottom:1em;
}
h4{font-weight:bold;font-size:1.1em;}
.sf-label-checkbox{font-size:0.8em;}
/****SIDEBAR****/
#overlay{   
    background: #313030;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: -3500px;
    left: 0px;
	z-index:-1;
	opacity:0.9;
}

.main-navigation{z-index:0;}

#vsmatrix_search {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 50px;
  margin-top:0;
  padding-bottom:5em;
  color:#fff;
}

#vsmatrix_search a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  color: #818181;
  display: inline-block;
  transition: 0.3s;
}

#vsmatrix_search a:hover {
  color: #f1f1f1;
}

#vsmatrix_search .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

input[type=checkbox]{
	background-color:red;
	color:red;
	    filter: invert(25%);


}

input[type=checkbox]:checked{
	accent-color:yellow;	
		    filter: none;

}


@media screen and (max-height: 450px) {
  #vsmatrix_search {padding-top: 15px;}
  #vsmatrix_search a {font-size: 18px;}
}

#vsmatrix_matrix {
  transition: margin-left .5s;
  padding: 0;
}
#comparisontable tr:nth-child(odd) td{
  background-color: #F0F8FF ;
  color: #000;;
}

/****END SIDEBAR****/

#comparisontablediv{
		margin-bottom:1em;
}

td{max-width:180px;}

/****NICE RIGHT SIDEBAR LNKS****/

.nicebutton{
                display: inline-block;
	width:100%;
                outline: 0;
                cursor: pointer;
                border: 2px solid #000;
                border-radius: 3px;
                color: #fff;
                background: #000;
                font-size: 16px;
                font-weight: 600;
                line-height: 28px;
                padding: 12px 20px;
                text-align:center;
                transition-duration: .15s;
                transition-property: all;
	transition-timing-function: cubic-bezier(.4,0,.2,1);}
.nicebutton:hover{
                    color: #000;
                    background: rgb(255, 218, 87);
                }
	.nicebutton a{color:#fff !important;text-decoration:none;}
	.nicebutton a:hover{color:#000  !important;text-decoration:none;}



@media (min-width: 768px) {
  .button-65 {
    padding: 14px 22px;
    width: 165px;
  }
}
