﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */
:root {
  --color-main-bcgr: #e2e6e9;
  --color-content-bcgr: white;

  --color-nav-bcgr: #3481b4;
  --color-nav-font: white;

  --color-primary: #1987cf;
  --color-white: white;
  --color-separator: #e6e6e6;

  --color-text-disabled: #808080;

  --mr-s: 10px;
  --mr-m: 15px;
  --mr-b: 20px;
  --mr-h: 30px;
}

/* utils */
.tgw-hidden {
  position: absolute;
  visibility: hidden;
}
.tgw-dis-flex {
  display: flex;
}
.tgw-dis-flex-center {
  display: flex;
  align-items: center;
}
.tgw-dis-flex-col {
  display: flex;
  flex-direction: column;
}
.tgw-flex-1 {
  flex: 1;
}
.tgw-text-disabled {
  color: var(--color-text-disabled);
}
.tgw-text-bold {
  font-weight: 501;
}
.tgw-line-1 {
  line-height: 1;
}
.tgw-text-13 {
  font-size: 13px;
}
.tgw-text-14 {
  font-size: 14px;
}
.tgw-text-20 {
  font-size: 20px;
}
.tgw-align-center {
  margin-left: auto;
  margin-right: auto;
}
.tgw-mr-s-right {
  margin-right: var(--mr-s);
}
.tgw-mr-s-bot {
  margin-bottom: var(--mr-s);
}
.tgw-mr-m-right {
  margin-right: var(--mr-m);
}
.tgw-mr-m-top {
  margin-top: var(--mr-m);
}
.tgw-mr-m-bot {
  margin-bottom: var(--mr-m);
}
.tgw-mr-b-left {
  margin-left: var(--mr-b);
}
.tgw-mr-h-top {
  margin-top: var(--mr-h);
}
.tgw-mr-h-bot {
  margin-bottom: var(--mr-h);
}
.tgw-mr-h-right {
  margin-right: var(--mr-h);
}
.tgw-text-center {
  text-align: center;
}
.tgw-text-no-wrap {
  white-space: nowrap;
}
/*///////////////////////*/

/* native main tags */
html {
  height: 100%;
}
html,
body {
  display: flex;
  flex-direction: column;
  margin: 0;
}
body {
  flex: 1;
}
/*///////////////////////*/

/* navbar */
.tgw-navbar {
  min-height: 52px;
  max-height: 52px;
  background-color: var(--color-nav-bcgr);
  color: var(--color-nav-font);
}

.tgw-navbar-logo {
  width: 200px;
  display: flex;
  align-items: center;
}
/*///////////////////////*/

/* header */
.tgw-content-header {
  text-align: center;
  word-break: break-word;
  font-size: 30px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  padding-top: 20px;
}
@media (max-width: 768px) {
  .tgw-content-header {
    font-size: 22px;
    padding: 20px;
  }
}
/*///////////////////////*/
/* icon */
.tgw-icon-big {
  width: 80px;
  height: 80px;
  font-size: 45px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-items: center;
  background-color: var(--color-primary);
  color: var(--color-white);
}
/*///////////////////////*/

/* sections */
.tgw-main {
  flex:1;
  padding-top: 1rem;
  background-color: var(--color-main-bcgr);
}

.tgw-content {
  background-color: var(--color-content-bcgr);
  padding: 30px;
}

.tgw-content-foot {
  border-top: 1px solid var(--color-separator);
  padding-top: 20px;
}

.tgw-content-650 {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .tgw-content {
    padding: 20px;
  }
}
/*///////////////////////*/

/* logo */
.tgw-app-logo {
  width: 120px;
  height: 120px;
  border-radius: 100%;

}
/*///////////////////////*/

/* btn */
.tgw-btn-primary {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  padding: 0 10px;
  border: 1px solid var(--color-primary);
  border-radius: 3px;
  background: var(--color-primary);
  color: var(--color-white);
  text-transform: uppercase;
  font-weight: 500;
  min-width: 100px;
  text-decoration: none !important;
}
.tgw-btn-stroked-primary {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  padding: 0 10px;
  border: 1px solid var(--color-primary);
  border-radius: 3px;
  background: transparent;
  color: var(--color-primary);
  text-transform: uppercase;
  font-weight: 500;
  min-width: 100px;
  text-decoration: none !important;
}
.text--primary {
  color: var(--color-primary);
}
/*///////////////////////*/

/* checkbox */
.tgw-checkbox {
  width: 18px;
  min-width: 18px;
  height: 18px;
}

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

/* radio list */
.tgw-list {
  display: flex;
  flex-direction: column;
}
.tgw-list-item {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 40px;
  margin-bottom: 10px;
}
.tgw-list-item:last-of-type {
  margin-bottom: 0;
}
.tgw-list-item__input {
  position: absolute;
  width: 20px;
  height: 20px;
  top: calc(50% - 10px);
  left: 20px;
}
.tgw-list-item__content {
  margin: 0;
  border: 2px solid #e2e6e9;
  border-radius: 3px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  padding: 10px;
  padding-left: 60px;
}
.tgw-list-item__input:checked ~ .tgw-list-item__content {
  border: 2px solid #3481b4;
  background: #fbfdfe;
}
/*///////////////////////*/

a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
  color: #0366d6;
}

.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.border-top {
  border-top: 1px solid #e5e5e5;
}
.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
  font-size: 1rem;
  line-height: inherit;
}

