<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*Main css file for Frikmat website*/

/*
 The design should be mobile first to render page faster.
 This is to make small devices' design first before scaling up to bigger screens
*/


/*General element styles*/

*, *:after, *:before {
	/*Make padding and border widths part of total element width*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;

  /*center all backgrounds and make them no repeatable */
	background-repeat: no-repeat;
	background-position: center;
}

html{
	width: 100%;
	height: 100%;
  margin: 0;
}

body {
	border: 0;
  padding: 0;
  overflow: auto;
  background-color: #e9e9e9;

  font-family: 'Roboto', sans-serif;
  font-size: 14px;
}

input, select, textarea {
  border: none;
  resize: none;
}

button {
  background-color: #FFA500;
  color: white;
  text-align: center;
  font-weight: bold;
  border: none;
  outline: none;
  border-radius: 5px;
  outline: none;
}

button:hover {
  background-color: #2D383A;
  color: #FFFFFF;
  cursor: pointer;
  outline: none;
}

button:active {
  outline: none;
}

button:focus {
  border: 2px solid #2D383A; 
  outline: none;
}

a {
	color: black;
	text-decoration: none;
}

a:hover, a:focus {
	cursor: pointer;
	color: #FFA500;
	text-decoration: none;
}

/*
a:visited {
  color: ;
}
*/


ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6, strong, b {
  padding: 0;
  margin: 0;
  font-weight: 500;
  font-size: 100%;
}
 img {
  width: 100%;
  height: auto;
 }

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

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

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

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

.error-field {
	border: 1px solid red !important;
}

/*General modal container*/
.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  overflow: auto;
  padding: 0;
  margin: 0;

  width: 100%;
  height: 100%;
  z-index: 899;
  background-color: rgba(0,0,0,0.8);
}

/* Add Zoom Animation */
.zoom-animate {
    -webkit-animation: animatezoom 0.6s;
    animation: animatezoom 0.6s
}

@-webkit-keyframes animatezoom {
  from {-webkit-transform: scale(0)} 
  to {-webkit-transform: scale(1)}
}

@keyframes animatezoom {
  from {transform: scale(0)} 
  to {transform: scale(1)}
}


/* Check for device orientation in protrait mode */
@media only screen and (orientation: portrait){
	
}

/* Small devices (portrait phones, 481px and up) */
@media only screen and (min-width: 481px) {

}

/* Small devices (portrait tablets and large phones, 601px and up) */
@media only screen and (min-width: 601px) {

} 

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 769px) {
  body {
    font-size: 15px;
  }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 993px) {
	body {
    font-size: 16px;
  }
} 

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1201px) {
	
}


</pre></body></html>