*
{
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    font-family: Didact Gothic, Oswald, Montserrat, Raleway, arial;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video
{
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

html, body
{
    width: 100%;
    height: 100%;
}

body
{
    height: 100%;
    min-height: 100%;
    line-height:1.4;
}

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
    display:block;
}

nav ul, ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}

/***********************common-styles**********************************/

.CommonArea
{
    width: 100%;
    margin: auto;
    max-width: 1280px;
    padding: 0 10px;
}

/* errors panel */

.StaticErrorPanelWrapper
{
    width: 100%;
}

.StaticErrorPanel
{
    border-radius: 8px;
    display: flex;
    width: 100%;
    max-width: 500px;
    padding: 25px;
    background: #e85792;
    color: #fff;
    margin: 50px auto;
}

.StaticErrorPanel .panelIcon
{
    position: relative;
    width: 50px;
    margin-right: 25px;
}

.StaticErrorPanel .panelIcon .Icon
{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    border: 2px solid #fff;
    border-radius: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.StaticErrorPanel .panelIcon .Icon:before
{
    position: absolute;
    top: 50%;
    left: 50%;
    content: "";
    width: 100%;
    height: 2px;
    background: #fff;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.StaticErrorPanel .panelDescription
{
    font-size: 0.95em;
    line-height: 1.5;
}

.StaticErrorPanel .panelDescription h3
{
    font-size: 1.3em;
    font-weight: bold;
}

/**************************************/

/***************Loading-Segment*****************/

.loadingSegment
{
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 12121212121221;
  padding: 25px;
  overflow: hidden;
  border-radius: 10px;
  background-color: #be1e2d;
  background-image: linear-gradient(to right, #be1e2d, #0027b5);
  opacity: 0.75;
}

.loadingwheel
{
  float: left;
  width: 25px;
  height: 25px;
  margin-right: 10px;
  border: 5px solid #fff;
  border-right-color: #e91e63;
  border-radius: 50%;
  animation: routing 0.5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation: routing 1s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
}

.loadingString
{
    width: auto;
    overflow: hidden;
    font-size: 1.1em;
    font-weight: bold;
    color: #fff;
}

@keyframes routing
{
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.data-validation
{
  font-size: 0.75em;
  color: #D21010;
  padding-top: 5px;
}

/****************************************/

/***************Custom-Alert****************/

.AlertCustom
{
    position: fixed;
    width: 90%;
    max-width: 450px;
    border: 1px solid #e85692;
    border-radius: 5px;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.15);
    background-color: #be1e2d;
    background-image: linear-gradient(to right, #be1e2d, #0027b5);
    opacity: 0;
    z-index: -10;
    transition: all 0.8s;
}

.AlertCustom.Active
{
    top: 20px;
    opacity: 1;
    z-index: 10000000000;
}

.AlertCustom .Icon
{
    position: relative;
    width: 30px;
    height: 30px;
    float: left;
    border-radius: 50%;
    background: #e85692;
}

.AlertCustom .AlertDescription
{
    width: auto;
    overflow: hidden;
    padding: 0 10px;
    color: #fff;
}

.AlertCustom.Success .Icon:before
{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30%;
    height: 20%;
    border: 3px solid #fac5ce;
    border-width: 0 0 3px 3px;
    transform: translateX(-45%) translateY(-60%) rotate(-45deg);
}

.AlertCustom.Normal .Icon:before
{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 45%;
    border-radius: 8px;
    background: #fac5ce;
    transform: translateX(-50%) translateY(-75%);
}

.AlertCustom.Normal .Icon:after
{
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fac5ce;
    transform: translateX(-50%) translateY(-80%);
}
/*************************************/
