/*!
  * Theme: ThePRO
  * Description: Personal Portfolio Wordpress Theme
  * Author: ThemeREC
  * Author URI:	https://www.templatemonster.com/authors/themerec/
  * License: TemplateMonster Website Templates Licenses: https://www.templatemonster.com/licenses
  */
:root {
  /* --theme-color: #009e66; */
	--theme-color: #830000;
}

::marker {
  color: var(--theme-color);  
}

/* CUSOR SELECTION */
::-moz-selection {
  background-color: var(--theme-color);
  color: #ffffff;
}
::selection {
  background-color: var(--theme-color);
  color: #ffffff;
}

/* BUTTON */
.trc-btn-primary {
  background-color: var(--theme-color);
  border: 1px solid var(--theme-color);
}

/* LINK */
a:not(.trc-btn-primary):hover {
  color: var(--theme-color);
}
a:not(.trc-btn-primary):focus,
a:not(.trc-btn-primary):hover {
  filter: brightness(1.2);
}

/* 
  ==========
    RESUME
  ==========
*/

.resume-section .resume-item {
  border-color: var(--theme-color);
}
.resume-section .resume-item .item-arrow:before {
  background-color: var(--theme-color);
}
.resume-section .resume-item .item-arrow:after {
  border-left-color: var(--theme-color);
}

/* 
  ==========
    INPUT
  ==========
*/

select:focus,
textarea:focus,
input:focus,
.input-text:focus {
  border-bottom: 1px solid var(--theme-color) !important;
}
input[type='checkbox'],
input[type='radio'] {
  accent-color: var(--theme-color);
}
