/*----------------------------------------------
*
* [Default Stylesheet]
*
* Theme    : NEXGEN
* Version  : 1.0.0
* Author   : Codings
* Support  : codings.dev
* 
----------------------------------------------*/

/*----------------------------------------------

[ALL CONTENTS]

1. Root
2. Button
3. Effect

----------------------------------------------*/

/*----------------------------------------------
1. Root
----------------------------------------------*/

/* #region Root */

:root {
    --h1-font: 'Microsoft JhengHei', '微軟正黑體', 'Microsoft YaHei', sans-serif;
    --h1-size: 4rem;
    --h1-weight: 900;
    
    --h2-font: 'Microsoft JhengHei', '微軟正黑體', 'Microsoft YaHei', sans-serif;
    --h2-size: 3rem;
    --h2-weight: 700;
    
    --p-font: 'Microsoft JhengHei', '微軟正黑體', 'Microsoft YaHei', sans-serif;
    --p-size: 1rem;
    --p-weight: 400;

    --header-bg-color: #21333e;
    --nav-top-bg-color: #21333e;
    --nav-sub-bg-color: #21333e;
    --nav-holder-bg-color: #21333e;
    --nav-brand-height: 35px;
    --nav-item-color: #f9f9f9;
    --hero-bg-color: #111117;
    --footer-brand-height: 80px;

    --primary-color: #058283;
    --secondary-color: #640000;
    
    --white-color: #ffffff;
    --black-color: #000007;
    --dark-grey-color: #111117;

    --primary-t-color: #21333e;
    --secondary-t-color: #f9f9f9; 
    --primary-p-color: #04294e;
    --secondary-p-color: #c0c3d0;
    --primary-b-color: #f9f9f9;
    --primary-l-color: rgba(0, 0, 0, .25);
    --secondary-l-color: rgba(255, 255, 255, 0.35);

    --valid-color: #007a4d;
    --invalid-color: #e34f4f;

    --primary-bg-color: #f9f9f9;
    --primary-bg-color-2: #f1f1f1;
    --primary-bg-color-3: rgba(4, 41, 78, 0.2);

    --secondary-bg-color: #111117;
    --secondary-bg-color-2: #04294e;
    --secondary-bg-color-3: #04294e;

    --card-bg-color: #ffffff;

    --footer-bg-color: #111117;
}

/* #endregion Root */

/*----------------------------------------------
2. Button
----------------------------------------------*/

/* #region Button */

.primary-button, .primary-button:visited, .primary-button:active {
    position: relative;
    z-index: 2;
    padding: 10px 25px;
    background-color: #04294e;
    border-radius: 4px;
    border: 1px solid;
    border-color: #04294e;
    color: var(--primary-b-color);
    font-weight: 500;
    -webkit-transition: all .4s ease-out 0s;
    -o-transition: all .4s ease-out 0s;
    -moz-transition: all .4s ease-out 0s;
    transition: all .4s ease-out 0s;
}

.primary-button:hover, .primary-button:focus {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white-color);
}

.outline-button, .outline-button:visited, .outline-button:active {
    position: relative;
    z-index: 2;
    padding: 10px 25px;
    background-color: rgb(255 255 255 / 0%);
    border-radius: 4px;
    border: 1px solid;
    border-color: #04294e;
    color: #04294e;
    font-weight: 500;
    -webkit-transition: all .4s ease-out 0s;
    -o-transition: all .4s ease-out 0s;
    -moz-transition: all .4s ease-out 0s;
    transition: all .4s ease-out 0s;
}

.slider-button, .slider-button:visited, .slider-button:active {
    background-color: #640000;
    border-color: #640000;
    color: var(--white-color);
}

.slider-button:hover, .slider-button:focus {
    background-color: #04294e;
    border-color: #04294e;
    color: var(--white-color);
}

.odd .outline-button, .odd .outline-button:visited, .odd .outline-button:active {
    position: relative;
    z-index: 2;
    padding: 10px 25px;
    background-color: transparent;
    border-radius: 4px;
    border: 1px solid;
    border-color: #04294e;
    color: var(--primary-b-color);
    font-weight: 500;
    -webkit-transition: all .4s ease-out 0s;
    -o-transition: all .4s ease-out 0s;
    -moz-transition: all .4s ease-out 0s;
    transition: all .4s ease-out 0s;
}

.outline-button:hover, .outline-button:focus {
    border-color: var(--secondary-color);
    background-color: var(--secondary-color);
    color: var(--white-color);
}

/* #endregion Button */

/* #region Effect */

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 #ffffff;
        background-color: #ffffff;
    }
    70% {
        -webkit-box-shadow: 0 0 0 10px #640000;
        background-color: #640000;
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 #640000;
        background-color: #640000;
    }
}
  
@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 #ffffff;
        box-shadow: 0 0 0 0 #ffffff;
        background-color: #ffffff;
    }
    70% {
        -moz-box-shadow: 0 0 0 #640000;
        box-shadow: 0 0 0 10px #640000;
        background-color: #640000;
    }
    100% {
        -moz-box-shadow: 0 0 0 0 #640000;
        box-shadow: 0 0 0 0 #640000;
        background-color: #640000;
    }
}

/* #endregion Effect */