/*
* demo.css
* File include item demo only specific css only
******************************************************************************/

            .card {
                padding: 10px;
            }

            .template-customizer-open-btn {
                display: none !important;
            }

            .noDecoration{
                text-decoration:none!important;
                color:inherit;
            }

            .btn-primary {
                /*background-color:red!important;*/
            }
            .btn-mainpage {
                background-color: lightslategray;
                width: 165px;
                border-radius: 15px;
                text-decoration: none;
                color: white;
                margin: 5px;
            }

            .btn-mainpage:hover {
                background-color: lightgrey;
            }
            .cycoption{width:80%!important}

/*ELECTION PICKER*/
            .elecOptions {
                margin-top: -10px;
                margin-bottom: 10px !important;
            }

            .elecoption, .cycoption {
                color: black !important;
            }
            .CurrentCycle{
                /*background-color:yellow;*/
            }
            .selectedSubElection {
                text-decoration: underline;
                /*border: 2px solid white;*/
            }


/*TOGGLE SWITCH*/
            .switch {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 34px;
            }

            /* Hide default HTML checkbox */
            .switch input {
            opacity: 0;
            width: 0;
            height: 0;
            }

            /* The slider */
            .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            -webkit-transition: .4s;
            transition: .4s;
            }

            .slider:before {
            position: absolute;
            content: "";
            height: 26px;
            width: 26px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            -webkit-transition: .4s;
            transition: .4s;
            }

            input:checked + .slider {
            background-color: #2196F3;
            }

            input:focus + .slider {
            box-shadow: 0 0 1px #2196F3;
            }

            input:checked + .slider:before {
            -webkit-transform: translateX(26px);
            -ms-transform: translateX(26px);
            transform: translateX(26px);
            }

            /* Rounded sliders */
            .slider {
            border-radius: 34px;
            }

            .slider:before {
            border-radius: 50%;
            }

/*SWITCH TABLE TO ROWS IN MOBILE VIEW*/
            table {
                width: 100%;
                border-collapse: collapse;
            }

            @media (max-width: 790px) {
                table, thead, tbody, th, td, tr {
                    display: block;
                }

                thead {
                    display: none; /* Hide table header */
                }

                tr {
                    margin-bottom: 10px;
                    border-bottom: 1px solid #ddd;
                    padding: 10px;
                }

                td {
                    display: flex;
                    justify-content: center;
                    text-align: center;
                    /*padding: 8px;*/
                    /*border-bottom:lightgray dashed 1px;*/
                    border-bottom: none;
                }
}
/*END OF SWITCH TABLE TO ROWS IN MOBILE VIEW*/


/*FOMATTING*/
            .hidden{display:none!important;}
            .centerContent {
                text-align: center !important;
                justify-content: center !important;
                /*display: flex !important;*/
                align-content: center !important;
                align-items: center !important;
            }
            .formsec {
                text-align: center !important;
                justify-content: center !important;
                display: flex !important;
                align-content: center !important;
                align-items: center !important;
            }
            .pull-right {
                float: right !important
            }

            .pull-none {
                float: none !important
            }

            .hidden {
                display: none;
            }
            .cursorPointer{cursor:pointer;}
            .initialsAlternate{
                width: 100px;
                height: 100px;
                text-align: center;
                align-content: center;
                font-size: xx-large;
                font-weight: 600;
            }
            .bx{cursor:pointer;}

.light-style .menu .app-brand.demo {
    height: 64px;
}

.dark-style .menu .app-brand.demo {
  height: 64px;
}

.app-brand-logo.demo {
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -ms-flexbox;
  display: flex;
  width: 30px;
  height: 30px;
}

.app-brand-logo.demo svg {
  width: 1.7rem;
  height: 1.7rem;
}

.app-brand-text.demo {
  font-size: 1.75rem;
  letter-spacing: -0.45px;
}

/* ! For .layout-navbar-fixed added fix padding top tpo .layout-page */
.layout-navbar-fixed .layout-wrapper:not(.layout-without-menu) .layout-page {
  padding-top: 64px !important;
}

/* Navbar page z-index issue solution */
.content-wrapper .navbar {
  z-index: auto;
}

/*
* Content
******************************************************************************/

.demo-blocks > * {
  display: block !important;
}

.demo-inline-spacing > * {
  margin: 1rem 0.375rem 0 0 !important;
}

/* ? .demo-vertical-spacing class is used to have vertical margins between elements. To remove margin-top from the first-child, use .demo-only-element class with .demo-vertical-spacing class. For example, we have used this class in forms-input-groups.html file. */
.demo-vertical-spacing > * {
  margin-top: 1rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing.demo-only-element > :first-child {
  margin-top: 0 !important;
}

.demo-vertical-spacing-lg > * {
  margin-top: 1.875rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing-lg.demo-only-element > :first-child {
  margin-top: 0 !important;
}

.demo-vertical-spacing-xl > * {
  margin-top: 5rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing-xl.demo-only-element > :first-child {
  margin-top: 0 !important;
}

.rtl-only {
  display: none !important;
  text-align: left !important;
  direction: ltr !important;
}

[dir='rtl'] .rtl-only {
  display: block !important;
}

/*
* Layout demo
******************************************************************************/

.layout-demo-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 1rem;
}
.layout-demo-placeholder img {
  width: 900px;
}
.layout-demo-info {
  text-align: center;
  margin-top: 1rem;
}

.hidden {
display:none;
}