@charset "UTF-8";

/*
** Colombo Grid
** Copyright 2021
** Authored by Taraka Dehigaspitiya
** https://taraka.net
*/ 

:root{
	--color-red: #e61635;
    --color-green: #0ec27a;
    --color-blue: #482ff7;
    --color-darkblue: #003580;
    --color-black: #111;
    --color-white: #fff;
    --color-dark: #222;
    --color-light: #f2f2f2;
    --color-yellow: #ffc105;
    --color-orange: #fd7e14;
    --color-purple: #581b98;
    --color-pink: #fc5185;   
    --color-teal: #20c997;
    --color-gray: #666;
    --color-nav: #eee;
    --color-gradient-dark: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    --color-gradient-purple: linear-gradient(to right, rgb(127, 0, 255), rgb(225, 0, 255));
    --font-serif: serif;
    --font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --font-cursive: cursive;
    --bg-transparent: transparent;
}
  
*,
*::before,
*::after{
	box-sizing: border-box;
}
  
@media (prefers-reduced-motion: no-preference){
    :root{
        scroll-behavior: smooth;
    }
}

html, body{
	margin: 0;
    padding: 0;
    font-family: var(--font-sans-serif);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #222;
	-webkit-text-size-adjust: 100%;
  	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

h1, h2, h3, h4, h5, h6{
	margin: 0;
	font-weight: 600;
}

h1{
	font-size: 2rem;
}

h2{
	font-size: 1.8rem;
}

h3{
	font-size: 1.6rem;
}

h4{
	font-size: 1.4rem;
}

h5{
	font-size: 1.2rem;
}

h6, p{
	font-size: 1rem;
}

p{
	margin: 0;
}

a{
	color: var(--color-blue);
}

a:hover{
	color: var(--color-darkblue);
}

ul.ls-none{
	list-style: none;
}

ul.inline li{
	display: inline-flex;
}

button{
	border: 1px solid #bbb;
	border-radius: 0;
	outline: 0;
	cursor: pointer;
}

[type=disabled], [disabled]{
	cursor: not-allowed;
	pointer-events: none;
}

[type=hidden], [hidden]{
	display: none !important;
}

input{
	outline: 0;
	border: 1px solid #ccc;
}

textarea{
	resize: none;
}

textarea.resizable{
	resize: vertical
}

/*
** Colombo Grid
** Copyright 2021
** Authored by Taraka Dehigaspitiya
** https://taraka.net
*/ 

.wrapper, .wrapper-100{
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

@media (min-width: 768px){
    .wrapper{
        max-width: 720px;
    }
}

@media (min-width: 1200px){
    .wrapper{
        max-width: 1140px;
    }
}

.row{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.row > *{
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
}

.column-100{
    flex: 0 0 auto;
    width: 100%;
}

.column-75{
    flex: 0 0 auto;
    width: 75%;
}

.column-60{
    flex: 0 0 auto;
    width: 60%;
}

.column-50{
    flex: 0 0 auto;
    width: 50%;
}

.column-40{
    flex: 0 0 auto;
    width: 40%;
}

.column-33{
    flex: 0 0 auto;
    width: 33.33333333333333%;
}

.column-25{
    flex: 0 0 auto;
    width: 25%;
}

.push-left-100{
    margin-left: 100%;
}

.push-left-75{
    margin-left: 75%;
}

.push-left-50{
    margin-left: 50%;
}

.push-left-33{
    margin-left: 33%;
}

.push-left-25{
    margin-left: 25%;
}

@media (min-width: 768px){
    .column-md-100{
        flex: 0 0 auto;
        width: 100%;
    }
    
    .column-md-75{
        flex: 0 0 auto;
        width: 75%;
    }

    .column-md-60{
        flex: 0 0 auto;
        width: 60%;
    }
    
    .column-md-50{
        flex: 0 0 auto;
        width: 50%;
    }

    .column-md-40{
        flex: 0 0 auto;
        width: 40%;
    }
    
    .column-md-33{
        flex: 0 0 auto;
        width: 33.33333333333333%;
    }
    
    .column-md-25{
        flex: 0 0 auto;
        width: 25%;
    }
    
    .push-left-md-100{
        margin-left: 100%;
    }
    
    .push-left-md-75{
        margin-left: 75%;
    }
    
    .push-left-md-50{
        margin-left: 50%;
    }
    
    .push-left-md-33{
        margin-left: 33%;
    }
    
    .push-left-md-25{
        margin-left: 25%;
    }
}

/*
** Colombo Grid
** Copyright 2021
** Authored by Taraka Dehigaspitiya
** https://taraka.net
*/ 

/* Display Hacks */

.d-none{
    display: none !important;
}

.d-block{
    display: block !important;
}

.d-inline{
    display: inline !important;
}

.d-inline-block{
    display: inline-block !important;
}

.d-table{
    display: table !important;
}

.d-table-row{
    display: table-row !important;
}

.d-table-cell{
    display: table-cell !important;
}

.d-table-column{
    display: table-column !important;
}

.d-flex{
    display: flex !important;
}

.d-inline-flex{
    display: inline-flex !important;
}

.d-grid{
    display: grid !important;
}

/* Position Hacks */

.pos-static{
    position: static !important;
}

.pos-relative{
    position: relative !important;
}

.pos-absolute{
    position: absolute !important;
}

.pos-fixed{
    position: fixed !important;
}

.pos-sticky{
    position: sticky !important;
    position: -webkit-sticky !important;
}

/* Overflow Hacks */

.overflow-auto{
    overflow: auto;
}

.overflow-hidden{
    overflow: hidden;
}

.overflow-visible{
    overflow: visible;
}

.overflow-overaly{
    overflow: overlay;
}

.overflow-scroll{
    overflow: scroll;
}

.overflow-x-hidden{
    overflow-x: hidden;
}
.overflow-y-hidden{
    overflow-y: hidden;
}

/* Width & Height Hacks */

.w-auto{
    width: auto
}

.w-100{
    width: 100%;
}

.w-100vw{
    width: 100vw;
}

.w-75{
    width: 75%;
}

.w-50{
    width: 50%;
}

.w-33{
    width: 33.333333333333%;
}

.w-25{
    width: 25%;
}

.h-auto{
    height: auto;
}

.h-100{
    height: 100%;
}

.h-100vh{
    height: 100vh;
}

.h-75{
    height: 75%;
}

.h-50{
    height: 50%;
}

.h-50vh{
    height: 50vh;
}

.h-25{
    height: 25%;
}

/* Text alignments */

.text-center{
    text-align: center;
}

.text-left{
    text-align: left;
}

.text-right{
    text-align: right;
}

.text-justify{
    text-align: justify;
}

/* Element alignments */

.align-center{
    text-align: center;
    margin: 0 auto;
}

.align-center-h-pos{
    left: 0;
    right: 0;
    margin: 0 auto;
}

.align-center-v-pos{
    top: 50%;
    transform: translateY(-50%);
}

.align-center-vh-pos{
    left: 50%;
    top: 50%;
    transform: translate(-50%);
}

.align-center-flex{
    align-items: center;
    justify-content: center;
}

/* Clearings */

.float-none{
    float: none;
    clear: both;
}

.margin-none{
    margin: 0;
}

.padding-none{
    padding: 0;
}

.bg-none{
    background: none;
}

.border-none{
    border: none;
}

/* Border Hacks */

.border-minimal{
    border: 1px solid #ccc;
}

.border-rounded{
    border-radius: 50%;
}

.border-minimal--bottom{
    border-bottom: 1px solid #ccc;
}

.border-minimal--top{
    border-top: 1px solid #ccc;
}


/* Components */

.button-stacked{
    padding: .5rem .75rem;
    border: 0;
    margin-right: .5rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: transparent;
}

.button-stacked::before{
    content: '';
    position: absolute;
    top: 0rem;
    left: 0rem;
    width: 100%;
    height: 100%;
    border: 1px solid #ccc;
    z-index: 4;
    transition: top .6s ease, left .6s ease;
}

.button-stacked::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid #ccc;
    top: .3rem;
    left: .3rem;
    z-index: 5;
}

.button-stacked:hover:before{
    top: .3rem;
    left: .3rem;
}

/* Notifier Module */

.notify{
    background: #ccc;
    padding: .5rem .75rem;
    border-radius: 4px;
    position: fixed;
    z-index: 999;
    top: 1rem;
    margin: 0 auto;
    width: fit-content;
    animation-name: fadeIn;
    animation-timing-function: ease-in-out;
    animation-duration: .7s;
}

@keyframes fadeIn{
    from{
        opacity: 0;
    }

    to{
        opacity: 1;
    }
}

.notify-pos-center{
    top: 50%;
    right: auto;
    bottom: auto;
    left: 50%;
    transform: translate(-50%);
}

.notify-pos-topLeft{
    top: .5rem;
    right: auto;
    bottom: auto;
    left: 1rem;
}

.notify-pos-topRight{
    top: .5rem;
    right: 1rem;
    bottom: auto;
    left: auto;
}

.notify-pos-topCenter{
    top: .5rem;
    right: auto;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
}

.notify--success{
    background: #2cb978;
    color: #eee;
}

.notify--error{
    background: var(--color-red);
    color: #eee;
}

.notify--warning{
    background: var(--color-yellow);
    color: #eee;
}

.notify--log{
    background: #222;
    color: #eee;
}

/* Modals */

.modal-cui{
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    display: none;
}

.modal-cui.closed{
    transform: translate(-100%);
}

[data-backdrop="darkened"]{
    background: rgba(0,0,0,0.4);
}

.modal-cui-inner{
    background: #f2f2f2;
    color: #333;
    width: 100%;
    padding: 1rem;
    z-index: 5;
    position: relative;
}

.modal-cui--controls{
    position: absolute;
    top: -1rem;
    right: -.8rem;
}

[data-size="regular"] .modal-cui-inner{
    max-width: 1024px;
    min-height: 128px;
    border-radius: 2px;
}

.modal-cui--controls a.close-modal{
    color: #222;
    font-size: 1.75rem;
    line-height: 1;
    text-decoration: none;
    font-weight: 200;
    background: indianred;
    color: #eee;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    border-radius: 50%;
    padding: .25rem 1rem;
}

.modal-wrapper-flex{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}