:root {
    
    /*primary colors: Use for CTAs, Focused/Active states*/
    /*--primary-color: #7F0056;
    --secondary-color: #F4F8FF;
    --primary-color-dark: #111111;*/

    /*neutral colors: Use for heading, sub text, link...*/
    /*--neutral-dark: #111111;
    --neutral-medium-dark: #555555;
    --neutral-medium: #999999;
    --neutral-light-medium:#DDDDDD;
    --neutral-light: #FFFFFF;*/
    
    /*shade of greys colors: Use for shadows, borders and lines.*/
    /*--shade-greys-border-line: #EEEEEE;
    --shade-greys-imput-border: #CCCCCC;
    --shade-greys-background: #F9F9F9;*/
    
    /*icon: Use for icons*/
    /*--icon-dark: #111111;
    --icon-medium: #111111;
    --icon-light-medium: #DDDDDD;
    --icon-light: #FFFFFF;*/
    
    /*tone: Use for alternative states*/
    /*--tone-red: #F84C5D;
    --tone-yellow: #FFD75E;
    --tone-green: #55D298;*/
    
    
    /*past styles */
    
    
    /*--secondart-color-2: #261D64;
    --tertiary-color: #c3c5ca;
    
    --accentuary-color: #c0186f;
    --link-color: #c0186f;

    --white: #fff; 
    --black: #000; 
    --black-2: #434041;
    --neutral-dark: #e45454;
    --box-shadow: 0px 1px 20px rgb(0 0 0 / 15%);*/
}
/*    SCROLLBAR    */
/* width */
::-webkit-scrollbar {
    width: 6px;
    height: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;

}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #730e42;
}

/*font styles: typography h1, h2, h3 and more...*/

/*default*/
body{
    /*font-family: Inter, sans-serif;
    font-weight: 400;*/
}

/*regular*/
.title{
    font-size: 64px;
    line-height: 82px;
}

/*h1{
    font-size: 56px;
    line-height: 70px;
}

h2{
    font-size: 46px;
    line-height: 54px;
}

h3{
    font-size: 34px;
    line-height: 42px;
}

h4{
    font-size: 28px;
    line-height: 36px;
}

h5{
    font-size: 24px;
    line-height: 30px;
}

h6{
    font-size: 18px;
    line-height: 26px;
}

body{
    font-size: 16px;
    line-height: 24px;
}

button{
    font-size: 16px;
    line-height: 24px;
}

a{
    font-size: 16px;
    line-height: 24px;
}

.overline{
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
}

.caption{
    font-size: 14px;
    line-height: 20px;
}*/

/*medium*/
.title-medium,
h1.medium,
h2.medium,
h3.medium,
h4.medium,
h5.medium
h6.medium,
body.medium,
button.medium,
a.medium,
.overline.medium,
.caption.medium{
    font-weight: 500;
}

/*bold*/
.title-bold,
h1.bold,
h2.bold,
h3.bold,
h4.bold,
h5.bold
h6.bold,
body.bold,
button.bold,
a.bold,
.overline.bold,
.caption.bold{
    font-weight: 700;
}


/*    ###########    */
.text-color--accent {
    /*color: var(--accentuary-color);*/
}
/*  margins  */
.mt-1 {
    margin-top: 1rem;
}
.my-2 {
    margin-top: 24px;
    margin-bottom: 24px;
}
.mb-4{
    margin-bottom: 4rem;
}
.mt-4{
    margin-top: 4rem;
}
.mt-3{
    margin-top: 3rem;
}
.pb-4 {
    padding-bottom: 4rem;
}

/* -- custom navbar -- */
.custom-navbar {
    margin-top: 0;
    border: none;
}
.navbar-brand{
    padding: 12px;
}
/*  links  */
.custom-link{
    text-decoration: none;
    font-weight: 400;
    color: var(--black) !important;
}
.custom-link--accent {
    color: var(--accentuary-color);
}
.custom-link--accent:hover  {
    color: var(--accentuary-color) !important;
    text-decoration: underline;
}
.custom-link:hover{
    text-decoration: underline !important; 
}

.popular-list--justify {
    justify-content: flex-start;
}
.popular-list__chip-items {
    background-color: var(--white);
    color: var(--black);
    font-size: 14px;
    font-weight: 400;
    margin: 6px 12px;

}

/*  ---------------   */
.custom-button {
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 6px 25px;
    font-weight: bold;
    min-height: 40px;

    margin-bottom: 0;
    /*    font-weight: 400;
        font-size: 1.4rem;
        line-height: 16px;*/
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 10px;
}
.custom-button:focus {
    color: inherit;
}
.custom-button:active {
    background-image: none;
    outline: 0;
    -webkit-box-shadow: inset 0 3px 5px rgb(0 0 0 / 13%);
    box-shadow: inset 0 3px 5px rgb(0 0 0 / 13%);
}
.custom-button--primary {
    background-color: var(--primary-color);
    color: var(--white);
}
.custom-button--primary:hover {
    color: var(--white);
}
.custom-button--secondary {
    //color: var(--white);
    padding: 5px 20px;
}
.custom-button--tertiary{
    background-color: var(--tertiary-color);
    color: var(--black);
}
.custom-button--flex{
    flex: 1;
}
.custon-button--max-width {
    max-width: 150px;
    width: fit-content;
    text-align: center;
    font-size: 1.2rem;
}


.custom-circulo{
    box-sizing: border-box;
    width: 117px;
    height: 118px;
    left: 239px;
    top: 428px;
    background: #F8F8F8;
    border: 1px solid #434041;
    border-radius: 200px;
}