/*This file is part of the project Pinsis-Portal.
 Copyright (C),2018, by C3SL(Centro de Computação Científica e
 Software Live)

 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation, either version 3 of the License, or
 (at your option) any later version.

 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.

 You should have received a copy of the GNU General Public License
 along with this program.  If not, see <https://www.gnu.org/licenses/>.*/

@import '../../sass/styles';

.map-container {
	width:700px;
	height:100%;
	max-height:600px;
	margin-left: auto;
	margin-right: auto;
  border: 3px solid $dark-purple;
}


.map-frame {
  border: 2px solid black;
  height: 100%;
}

#map {
  height: 100%;

}




.hospital-selector{
  border: 3px solid $dark-purple;
	margin-left: auto;
	margin-right: auto;
	height: 90%;
	max-height:600px;
	background-color: #ffffff;
}
.row-hospital-selector{
	height:600px;
	overflow:hidden;
}

.hosp-col{

}

@media screen and (max-width: 800px) {
  .map-container {
			margin-top: 10px;
			width:92%;
			max-height:400px;
  }
	.hospital-selector{
		max-height:600px;
	}
	.row-hospital-selector{
		height:850px;
		overflow:hidden;
	}
	.hosp-col{
		max-height: 400px;
	}
}



// [class*="col-"] {
//     float: none;
//     display: table-cell;
//     vertical-align: top;
//     padding:5px;
//     min-width:100px;
// }

.arrow_box {
    position: relative;
    background: #fff;
    border: 1px solid #003c88;
}
.arrow_box:after, .arrow_box:before {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.arrow_box:after {
    border-color: rgba(255, 255, 255, 0);
    border-top-color: #fff;
    border-width: 10px;
    margin-left: -10px;
}
.arrow_box:before {
    border-color: rgba(153, 153, 153, 0);
    border-top-color: #003c88;
    border-width: 11px;
    margin-left: -11px;
}

.arrow_box {
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 50px;
}

.breadcrumb {
    padding: 10px 16px;
    list-style: none;
    background-color: $white;
    //width: 60%;

    li {
        display: inline;
        font-size: 18px;

        a {
            color: $light-purple;
            text-decoration: none;

            &:hover {
                color: $dark-purple;
                text-decoration: none;
                transition: cubic-bezier(0.075, 0.82, 0.165, 1);
            }
        }
    }
}

.register_button {
  color: $text-light;
  background-color: $light-purple;
  text-decoration: none;
  text-align: center;
  font-size: 20px;
  padding: 5px 20px;

  margin-top: 0px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  display: block;

  border-style: none;
  border-radius: 4px;

  &:hover {
      background-color: $dark-purple;
      text-decoration: none;
      transition: cubic-bezier(0.075, 0.82, 0.165, 1);
      cursor:pointer;
  }
}

a:hover{
	cursor:pointer;
}